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 nthtail用法及代码示例
- erlang nth用法及代码示例
- erlang nth_lexeme(String, N, SeparatorList)用法及代码示例
- erlang nth(N, List)用法及代码示例
- erlang now用法及代码示例
- erlang node用法及代码示例
- erlang nativename(Path)用法及代码示例
- erlang nodes(Arg, InfoOpts)用法及代码示例
- erlang nc(File)用法及代码示例
- erlang names(Host)用法及代码示例
- erlang new()用法及代码示例
- erlang next(Iterator)用法及代码示例
- erlang next_codepoint(String :: unicode:chardata())用法及代码示例
- erlang next_grapheme(String :: unicode:chardata())用法及代码示例
- erlang new(Options :: array_opts())用法及代码示例
- erlang new(Size :: integer() >= 0, Options :: array_opts())用法及代码示例
- erlang normalize(URI)用法及代码示例
- erlang normalize(URI, Options)用法及代码示例
- erlang names()用法及代码示例
- erlang sin用法及代码示例
- erlang cos用法及代码示例
- erlang tan用法及代码示例
- erlang asin用法及代码示例
- erlang acos用法及代码示例
- erlang atan用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 nthtail(N, List) -> Tail。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。