elixir keyword和map的區別
阿新 • • 發佈:2018-12-12
┌──────────────┬────────────┬───────────────────────┐ │ Keyword List │ Map/Struct │ HashDict (deprecated) │ ┌──────────────────┼──────────────┼────────────┼───────────────────────┤ │ Duplicate keys │ yes │ no │ no │ │ Ordered │ yes │ no │ no │ │ Pattern matching │ yes │ yes │ no │ │ Performance¹ │ — │ — │ — │ │ ├ Insert │ very fast² │ fast³ │ fast⁴ │ │ └ Access │ slow⁵ │ fast³ │ fast⁴ │ └──────────────────┴──────────────┴────────────┴───────────────────────┘