Skip to main content

Dictionaries

Dictionaries are collections containing a sorted list of keys and associated values. East dictionaries are dynamically sized and can contain an arbitrary number of entries. In JavaScript and some other programming languages dictionaries are known as a Map.

Dictionary values and types

The East type for dictionaries with keys of type K and values of type T is DictType(K, T). Currently K is restricted to being StringType. There are many different dictionary types, like DictType(StringType, IntegerType) and DictType(StringType, DateTimeType). The EDK accepts standard JavaScript Maps as values for DictType.

East typeExample value (JavaScript)East object notation
DictType(StringType, BooleanType)new Map(){:}
DictType(StringType, BooleanType)new Map([["a", true], ["b", false]]){"a": true, "b": false,}

Constructing dictionaries

Dictionaries are constructed with the NewDict expression. The first argument to NewDict is the type of key that can be contained within the dictionary. The second is the type of value that can be associated with each key. Subsequent to that, you can optionally provide a two lists of expressions to populate the keys and the values in the new dictionary, respectively.

East functionDescriptionExample usageResult
NewDictCreate a new empty dictionary mapping strings to BooleansNewDict(StringType, BooleanType){:}
NewDictCreate a new dictionary with two entriesNewDict(StringType, BooleanType, [Const("a"), Const("b")], [Const(true), Const(false)]){"a": true, "b": false,}

Basic operations on dictionaries

You can query whether a key exists in a dictionary with In, and get the number of entries with Size. You can create a set of keys with Keys. You can fetch a value from a dictionary with its key (or index) using Get. If the key might not exist, you can specify a default value. If you do not specify a default value and they key does not exist, a runtime error will result.

You can modify arrays by inserting, updating or deleting elements. Arrays in East are immutable. The input dictionary will not be modified; instead a new one will be returned.

For brevity, in the table below the value dict is Const(new Map([["a", true], ["b", false]])).

East functionDescriptionExample usageResult
SizeGet the number of entries in a dictionarySize(dict)2
KeysReturn the set of keys in a dictionaryKeys(dict){"a", "b",}
InDetermine if a key is in a dictionaryIn(dict, "a")true
GetFetch a value from a dictionary (error if key not exist)Get(dict, "a")true
GetFetch a value from a dictionary (with default if key not exist)Get(dict, "c", false)false
InsertInsert an entry into a dictionaryInsert(dict, "c", true){"a": true, "b": false, "c": true,}
UpdateUpdate an existing value in a dictionaryUpdate(dict, "b", true){"a": true, "b": true,}
DeleteDelete a entry from a dictionaryDelete(dict, "a"){"b": true,}

Advanced dictionary operations

You can apply dictionary transformations with with Filter, FilterMap, ToDict and Reduce. These are covered in detail in later sections.

Equality and ordering

Two dictionaries are equal if they contain the same number of entries, the same set of keys, and and each value associated with a given key is equal.

Ordering of dictionaries is defined lexically. The first entries are compared, then the second, until we reach the end. For each entry, we first compare the keys and then the values. If one dictionary is the "prefix" of another, then it is lesser.

Representation

Dictionaries are represented in East's canonical JSON representation as JSON arrays of { key, value } objects. They are printed by Print in East's object notation with {} delimiters and comma seperated values (including a trailing comma). An empty dictionary is printed as {:} to disambiguate it from a set.

Next steps

Continue to the next tutorial to understand how to filter collections of data with East and Elara.