iterator(Map) -> Iterator
OTP 21.0
類型:
Map = #{Key => Value}
Iterator = iterator(Key, Value)
返回一個Map迭代器Iterator
可以使用maps:next/1
遍曆映射中的鍵值關聯。迭代映射時,無論映射大小如何,內存使用量都保證是有界的。
如果 Map
不是映射,則調用失敗並出現 {badmap,Map}
異常。
例子:
> M = #{ a => 1, b => 2 }.
#{a => 1,b => 2}
> I = maps:iterator(M), ok.
ok
> {K1, V1, I2} = maps:next(I), {K1, V1}.
{a,1}
> {K2, V2, I3} = maps:next(I2),{K2, V2}.
{b,2}
> maps:next(I3).
none
相關用法
- erlang iterator(Map, Order)用法及代碼示例
- erlang is_file用法及代碼示例
- erlang is_dir用法及代碼示例
- erlang is_atom用法及代碼示例
- erlang is_key用法及代碼示例
- erlang is_tuple用法及代碼示例
- erlang is_binary用法及代碼示例
- erlang is_pid用法及代碼示例
- erlang is_process_alive用法及代碼示例
- erlang is_alive用法及代碼示例
- erlang init(UserData :: user_data(), AccessMode :: write | read, Fun :: file_op())用法及代碼示例
- erlang insert_element(Index, Tuple1, Term)用法及代碼示例
- erlang integer_to_binary(Integer)用法及代碼示例
- erlang integer_to_binary(Integer, Base)用法及代碼示例
- erlang integer_to_list(Integer)用法及代碼示例
- erlang integer_to_list(Integer, Base)用法及代碼示例
- erlang iolist_size(Item)用法及代碼示例
- erlang iolist_to_binary(IoListOrBinary)用法及代碼示例
- erlang iolist_to_iovec(IoListOrBinary)用法及代碼示例
- erlang is_map_key(Key, Map)用法及代碼示例
- erlang is_process_alive(Pid)用法及代碼示例
- erlang in(Item, Q1 :: queue(Item))用法及代碼示例
- erlang in_r(Item, Q1 :: queue(Item))用法及代碼示例
- erlang init(Q1 :: queue(Item))用法及代碼示例
- erlang init_ack(Ret)用法及代碼示例
注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 iterator(Map) -> Iterator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。