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}。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。