用法:
Base.rest(collection[, itr_state])
用于获取 collection
尾部的通用函数,从特定的迭代状态 itr_state
开始。返回 Tuple
,如果 collection
本身是 Tuple
,则为 AbstractVector
的子类型,如果 collection
是 AbstractArray
,则 AbstractString
的子类型 如果 collection
是 AbstractString
和任意迭代器,否则回退到 Iterators.rest(collection[, itr_state])
。
可以为用户定义的集合类型重载以自定义 slurping in assignments 的行为,例如 a, b... = collection
。
Julia 1.6
Base.rest
至少需要 Julia 1.6。
另请参阅:
、first
。Iterators.rest
例子
julia> a = [1 2; 3 4]
2×2 Matrix{Int64}:
1 2
3 4
julia> first, state = iterate(a)
(1, 2)
julia> first, Base.rest(a, state)
(1, [3, 2, 4])
相关用法
- Julia reshape用法及代码示例
- Julia resize!用法及代码示例
- Julia rem用法及代码示例
- Julia reduce方法用法及代码示例
- Julia redirect_stdio用法及代码示例
- Julia readchomp用法及代码示例
- Julia readuntil用法及代码示例
- Julia replace!用法及代码示例
- Julia real方法用法及代码示例
- Julia readlines用法及代码示例
- Julia replace()用法及代码示例
- Julia retry用法及代码示例
- Julia read用法及代码示例
- Julia reverseind用法及代码示例
- Julia reim用法及代码示例
- Julia repeat方法用法及代码示例
- Julia readline用法及代码示例
- Julia repeat用法及代码示例
- Julia repr方法用法及代码示例
- Julia reverse!用法及代码示例
- Julia replace方法用法及代码示例
- Julia repeat()用法及代码示例
- Julia reverse方法用法及代码示例
- Julia readeach用法及代码示例
- Julia reverse()用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.rest — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。