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


Julia front用法及代码示例


用法:

front(x::Tuple)::Tuple

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

另请参阅: first tail

例子

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

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

相关用法


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