You are currently looking at the v12 docs, which are still a work in progress. If you miss anything, you may find it in the older v11 docs here.
Dictionary
ReScript has first class support for dictionaries. Dictionaries are mutable objects with string keys, where all values must have the same type. Dicts compile to regular JavaScript objects at runtime.
Create
You can create a new dictionary in a few different ways, depending on your use case.
A few things to note here:
Using the first class
dict{}
syntax compiles cleanly to a JavaScript object directlyUsing
Dict.fromArray
is useful when you need to create a dictionary programatically
Access
You can access values from a Dictionary either via the the standard library Dict
module functions, or using pattern matching.
In the Destructuring example, we're using the
?
optional pattern match syntax to pull out theC
key value as an optional, regardless of if the dict has it or not.
Pattern matching
Dictionaries have first class support for pattern matching. Read more in the dedicated guide on pattern matching and destructring in ReScript.
Updating and setting values
You can set and update new values on your dictionary using the Dict.set
function. All updates are mutable.
Advanced example: Pattern matching on JSON
JSON objects are represented as dictionaries (dict<JSON.t>
). You can leverage that fact to decode JSON in a nice way, using only language features: