本文简要介绍ruby语言中 Set.divide
的用法。
用法
divide(&func)
根据给定块定义的共性将集合划分为一组子集。
如果块的元数为 2,如果 block.call(o1, o2) 为真,则元素 o1 和 o2 是公共的。否则,如果 block.call(o1) == block.call(o2),元素 o1 和 o2 是共同的。
require 'set'
numbers = Set[1, 3, 4, 6, 9, 10, 11]
set = numbers.divide { |i,j| (i - j).abs == 1 }
set #=> #<Set: {#<Set: {1}>,
# #<Set: {11, 9, 10}>,
# #<Set: {3, 4}>,
# #<Set: {6}>}>
如果没有给出块,则返回一个枚举器。
相关用法
- Ruby Set.disjoint?用法及代码示例
- Ruby Set.replace用法及代码示例
- Ruby Set.==用法及代码示例
- 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.new用法及代码示例
- 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.divide。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。