traverse(Name, Fun) -> Return | {error, Reason}
類型:
Name = tab_name()
Fun = fun((Object) -> FunReturn)
Object = object()
FunReturn =
continue | {continue, Val} | {done, Value} | OtherValue
Return = [term()] | OtherValue
Val = Value = OtherValue = Reason = term()
以某種未指定的順序將 Fun
應用於表 Name
中存儲的每個對象。根據 Fun
的返回值采取不同的操作。允許以下 Fun
返回值:
continue
-
繼續執行遍曆。例如,可以使用以下函數來打印表格的內容:
fun(X) -> io:format("~p~n", [X]), continue end.
{continue, Val}
-
繼續遍曆,累加
Val
。提供以下函數來收集列表中表的所有對象:fun(X) -> {continue, X} end.
{done, Value}
-
終止遍曆並返回
[Value | Acc]
。
Fun
返回的任何其他值OtherValue
都會終止遍曆並立即返回。
相關用法
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代碼示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代碼示例
- erlang transaction(Fun)用法及代碼示例
- erlang transcode(URIString, Options)用法及代碼示例
- erlang trunc(Number)用法及代碼示例
- erlang trim(String)用法及代碼示例
- erlang tan用法及代碼示例
- erlang tuple_to_list用法及代碼示例
- erlang term_to_binary用法及代碼示例
- erlang table(Table)用法及代碼示例
- erlang term_to_binary(Term)用法及代碼示例
- erlang throw(Any)用法及代碼示例
- erlang time()用法及代碼示例
- erlang timestamp()用法及代碼示例
- erlang tl(List)用法及代碼示例
- erlang tuple_size(Tuple)用法及代碼示例
- erlang tuple_to_list(Tuple)用法及代碼示例
- erlang to_list(Q :: queue(Item))用法及代碼示例
- erlang take(Key, Orddict)用法及代碼示例
- erlang table(Name)用法及代碼示例
- erlang take(Key, Map1)用法及代碼示例
- erlang to_list(MapOrIterator)用法及代碼示例
- erlang take(String, Characters)用法及代碼示例
- erlang titlecase(String :: unicode:chardata())用法及代碼示例
- erlang to_float(String)用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 traverse(Name, Fun) -> Return | {error, Reason}。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。