當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。