本文简要介绍ruby语言中 Set.classify
的用法。
用法
classify() { |o| ... }
根据给定块的返回值对集合进行分类,并返回 {value => set of elements} 对的哈希。该块对集合中的每个元素调用一次,并将元素作为参数传递。
require 'set'
files = Set.new(Dir.glob("*.rb"))
hash = files.classify { |f| File.mtime(f).year }
hash #=> {2000=>#<Set: {"a.rb", "b.rb"}>,
# 2001=>#<Set: {"c.rb", "d.rb", "e.rb"}>,
# 2002=>#<Set: {"f.rb"}>}
如果没有给出块,则返回一个枚举器。
相关用法
- Ruby Set.clear用法及代码示例
- Ruby Set.replace用法及代码示例
- Ruby Set.==用法及代码示例
- Ruby Set.disjoint?用法及代码示例
- Ruby Set.[]用法及代码示例
- Ruby Set.===用法及代码示例
- Ruby Set.-用法及代码示例
- Ruby Set.to_a用法及代码示例
- Ruby Set.add?用法及代码示例
- Ruby Set.add用法及代码示例
- Ruby Set.|用法及代码示例
- Ruby Set.^用法及代码示例
- Ruby Set.&用法及代码示例
- Ruby Set.new用法及代码示例
- Ruby Set.divide用法及代码示例
- Ruby Set.intersect?用法及代码示例
- Ruby Set flatten()用法及代码示例
- Ruby Set intersection()用法及代码示例
- Ruby Set类用法及代码示例
- Ruby Set size()用法及代码示例
- Ruby Set compare_by_identity?用法及代码示例
- Ruby Set merge()用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Set compare_by_identity()用法及代码示例
- Ruby Set flatten!()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Set.classify。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。