本文简要介绍ruby语言中 Set.new
的用法。
用法
new(enum = nil) { |o| ... }
创建一个包含给定可枚举对象的元素的新集合。
如果给定一个块,则枚举的元素由给定的块预处理。
Set.new([1, 2]) #=> #<Set: {1, 2}>
Set.new([1, 2, 1]) #=> #<Set: {1, 2}>
Set.new([1, 'c', :s]) #=> #<Set: {1, "c", :s}>
Set.new(1..5) #=> #<Set: {1, 2, 3, 4, 5}>
Set.new([1, 2, 3]) { |x| x * x } #=> #<Set: {1, 4, 9}>
相关用法
- Ruby Set.replace用法及代码示例
- Ruby Set.==用法及代码示例
- Ruby Set.disjoint?用法及代码示例
- Ruby Set.classify用法及代码示例
- Ruby Set.[]用法及代码示例
- Ruby Set.===用法及代码示例
- Ruby Set.-用法及代码示例
- Ruby Set.to_a用法及代码示例
- Ruby Set.add?用法及代码示例
- Ruby Set.add用法及代码示例
- Ruby Set.|用法及代码示例
- Ruby Set.^用法及代码示例
- Ruby Set.&用法及代码示例
- Ruby Set.divide用法及代码示例
- Ruby Set.intersect?用法及代码示例
- Ruby Set.clear用法及代码示例
- 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.new。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。