Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Clojure
- C++
- C#
- D
- Dart
- Go
- Groovy
- Groovy
- Haskell
- JS
- JS
- Java
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Smalltalk
(assoc m k v)
Returns a new map.
m[k] = v;
std::map<>::operator[] will either insert or update the value.
m[k] = v;
m[k] = v;
m[k] = v
If m[k] already exists, then it is overwritten.
m[k] = v;
m is an Object.
In this case m is used as a map of key/value pairs.
In this case m is used as a map of key/value pairs.
m.set(k, v);
m has type Map.
m.put(k, v);
$m[$k] = $v;
If m[k] already exists, then it is overwritten.
$m{$k} = $v;
m[k] = v
If m[k] already exists, then it is overwritten.
m.update({k: v})
m[k] = v
m at: k put: v.