当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia tail用法及代码示例


用法:

tail(x::Tuple)::Tuple

返回一个由 x 的第一个组件以外的所有组件组成的 Tuple

另请参阅: front rest first Iterators.peel

例子

julia> Base.tail((1,2,3))
(2, 3)

julia> Base.tail(())
ERROR: ArgumentError: Cannot call tail on an empty tuple.

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.tail — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。