Erlang - nthtail



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

语法

nthtail(N, List)

参数

  • N − 从尾部开始返回元素的第 N 个位置。

  • Lst − 元素列表。

返回值

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

例如

-module(helloworld). 
-import(lists,[nthtail/2]). 
-export([start/0]). 

start() -> 
   Lst1 = [1,2,3], 
   io:fwrite("~p~n",[nthtail(2,Lst1)]).

输出

运行上述程序后,将得到以下结果。

[3]
erlang_lists.htm
广告