Maps
Everything on SkillVeris tagged Maps — collected across the glossary, study notes, blog, and cheat sheets.
7 resources across 1 library
Study Notes(7)
Message Maps
How MFC's message-map macros build a static dispatch table that replaces a hand-written WndProc, plus how command routing and UI updates work on top of it.
Lists, Sets, and Maps
Master Apex's three core collection types — ordered Lists, unique Sets, and key-value Maps — and when to use each for bulk-safe, governor-limit-friendly code.
Lists, Sets, and Maps
Learn Dart's three core collection types, List, Set, and Map, and when to use each for ordered sequences, unique elements, and key-value lookups.
Maps in Erlang
Maps are Erlang's key-value associative data structure, offering dynamic keys, efficient lookups, and pattern matching without requiring a compile-time schema…
Maps in Elixir
Understand Elixir's key-value data structure, how to build, update, and pattern-match against maps, and when to reach for structs instead.
Maps and Sets
Understand Scala's Map and Set collections - how they guarantee unique keys and elements, the difference between immutable and mutable variants, and their core…
Maps in Go
An unordered collection of key-value pairs providing fast lookup, insertion, and deletion by key.