This Web
All Webs
Erlang Links
Erlang Web Ring
1> MyDict = dict:from_list([{foo,1},{bar,2},{baz,3}]). [ ... ] 2> lists:foreach(fun(X) -> {Key,Value} = X, 2> io:fwrite("~p: ~p~n", [Key, Value]) end, 2> dict:to_list(MyDict)). bar: 2 baz: 3 foo: 1 ok
ets:first
ets:next
ets