本文简要介绍ruby语言中 Enumerable.first
的用法。
用法
first → element or nil
first(n) → array
返回第一个元素或元素。
如果没有参数,则返回第一个元素,如果没有,则返回 nil
:
(1..4).first # => 1
%w[a b c].first # => "a"
{foo: 1, bar: 1, baz: 2}.first # => [:foo, 1]
[].first # => nil
使用整数参数 n
,返回包含存在的第一个 n
元素的数组:
(1..4).first(2) # => [1, 2]
%w[a b c d].first(3) # => ["a", "b", "c"]
%w[a b c d].first(50) # => ["a", "b", "c", "d"]
{foo: 1, bar: 1, baz: 2}.first(2) # => [[:foo, 1], [:bar, 1]]
[].first(2) # => []
相关用法
- Ruby Enumerable.find_all用法及代码示例
- Ruby Enumerable.find_index用法及代码示例
- Ruby Enumerable.filter_map用法及代码示例
- Ruby Enumerable.find用法及代码示例
- Ruby Enumerable.filter用法及代码示例
- Ruby Enumerable.flat_map用法及代码示例
- Ruby Enumerable.any?用法及代码示例
- Ruby Enumerable.slice_before用法及代码示例
- Ruby Enumerable.uniq用法及代码示例
- Ruby Enumerable.max用法及代码示例
- Ruby Enumerable.map用法及代码示例
- Ruby Enumerable.min_by用法及代码示例
- Ruby Enumerable.minmax用法及代码示例
- Ruby Enumerable.drop用法及代码示例
- Ruby Enumerable.member?用法及代码示例
- Ruby Enumerable.each_cons用法及代码示例
- Ruby Enumerable.entries用法及代码示例
- Ruby Enumerable.reject用法及代码示例
- Ruby Enumerable.each_with_index用法及代码示例
- Ruby Enumerable.sort用法及代码示例
- Ruby Enumerable.all?用法及代码示例
- Ruby Enumerable.take用法及代码示例
- Ruby Enumerable.reduce用法及代码示例
- Ruby Enumerable.each_with_object用法及代码示例
- Ruby Enumerable.sort_by用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Enumerable.first。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。