RosettaCodeData/Task/Associative-array-Creation/E/associative-array-creation.e

6 lines
314 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[].asMap() # immutable, empty
["one" => 1, "two" => 2] # immutable, 2 mappings
[].asMap().diverge() # mutable, empty
["one" => 2].diverge(String, float64) # mutable, initial contents,
# typed (coerces to float)