Dict and maps modules for Erlang

Source: Internet
Author: User
Tags map data structure

Erlang added the map data structure after R17, before, like the requirements of the map with the Dict module to implement, here directly paste the relevant operation

Dict

D = dict:new== dict:erase (K1,D1).

NOTE: Fetch will crash,find return error when key does not exist, and return {OK,V1} if successful

Maps

M = maps:new= maps:put (k1,v1,m). Maps:get= Maps:remove (K1,m1).

Note: Get Crash,find will return error when key does not exist, and return {OK,V1} if successful

Dict and maps modules for Erlang

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.