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


erlang nthtail(N, List)用法及代码示例


nthtail(N, List) -> Tail
类型:
N = integer() >= 0
0..长度(列表)
List = [T, ...]
Tail = [T]
T = term()

返回 List 的第 N 尾部,即从 N+1 开始一直到列表末尾的 List 的子列表。

示例

> lists:nthtail(3, [a, b, c, d, e]).
[d,e]
> tl(tl(tl([a, b, c, d, e]))).
[d,e]
> lists:nthtail(0, [a, b, c, d, e]).
[a,b,c,d,e]
> lists:nthtail(5, [a, b, c, d, e]).
[]

相关用法


注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 nthtail(N, List) -> Tail。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。