ruby 可以收集

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 可以收集相关的知识,希望对你有一定的参考价值。

# .collect performs an operation on each element of the object it’s
# invoked on and returns a new Array


colors = [‘red’, ‘green’, ‘blue’]
colors.collect { |color| “bright_color_#{color}’ }

(1..10).collect { |num| num * num } 

以上是关于ruby 可以收集的主要内容,如果未能解决你的问题,请参考以下文章

ruby 用于从Facebook用户数据转储收集电话记录统计信息的Ruby脚本

ruby huboard的当前数据收集代码

Ruby中地图和收集之间的区别?

Ruby中的每个方法和收集方法有啥不同[重复]

ruby 红宝石中的文本收集器

ruby on rails中收集路线和会员路线的区别?