Records and Maps
So far, we have seen pretty basic data types. LIGO also offers more complex built-in constructs, such as records and maps.
#
RecordsRecords are one-way data of different types can be packed into a
single type. A record is made of a set of fields, which are made of
a field name and a field type. Given a value of a record type, the
value bound to a field can be accessed by giving its field name to a
special operator (.
).
Let us first consider an example of record type declaration.
And here is how a record value is defined:
#
Accessing Record FieldsIf we want the contents of a given field, we use the (.
) infix
operator, like so:
#
Functional UpdatesGiven a record value, it is a common design pattern to update only a small number of its fields. Instead of copying the fields that are unchanged, LIGO offers a way to only update the fields that are modified.
One way to understand the update of record values is the functional update. The idea is to have an expression whose value is the updated record.
Let us consider defining a function that translates three-dimensional points on a plane.
In PascaLIGO, the shape of that expression is
<record variable> with <record value>
.
The record variable is the record to update, and the
record value is the update itself.
You can call the function xy_translate
defined above by running the
following command of the shell:
You have to understand that p
has not been changed by the functional
update: a nameless new version of it has been created and returned by
the block-less function.
You can call the function xy_translate
defined above by running the
following command of the shell:
You have to understand that p
has not been changed by the functional
update: a nameless new version of it has been created and returned.
#
Nested updatesA unique feature of LIGO is the ability to perform nested updates on records.
For example if you have the following record structure:
You can update the nested record with the following code:
Note that all the records in the path will get updated. In this example that's
account
and preferences
.
You can call the function change_color_preference
defined above by running the
following command:
#
Record PatchesAnother way to understand what it means to update a record value is to
make sure that any further reference to the value afterward will
exhibit the modification. This is called a patch
and this is only
possible in PascaLIGO, because a patch is an instruction, therefore
we can only use it in a block. Similarly to a functional update, a
patch takes a record to be updated and a record with a subset of the
fields to update, then applies the latter to the former (hence the
name "patch").
Let us consider defining a function that translates three-dimensional points on a plane.
You can call the function xy_translate
defined above by running the
following command of the shell:
Of course, we can actually translate the point with only one patch
,
as the previous example was meant to show that, after the first patch,
the value of p
indeed changed. So, a shorter version would be
You can call the new function xy_translate
defined above by running the
following command of the shell:
Record patches can actually be simulated with functional updates. All we have to do is declare a new record value with the same name as the one we want to update and use a functional update, like so:
You can call the new function xy_translate
defined above by running the
following command of the shell:
The hiding of a variable by another (here p
) is called shadowing
.
#
MapsMaps are a data structure which associate values of the same type to values of the same type. The former are called key and the latter values. Together they make up a binding. An additional requirement is that the type of the keys must be comparable, in the Michelson sense.
#
Declaring a MapHere is how a custom map from addresses to a pair of integers is defined.
#
Creating an Empty MapHere is how to create an empty map.
#
Creating a Non-empty MapAnd here is how to create a non-empty map value:
Notice the ->
between the key and its value and ;
to separate
individual map entries. The annotated value ("<string value>" :
address)
means that we cast a string into an address. Also, map
is
a keyword.
#
Accessing Map BindingsIn PascaLIGO, we can use the postfix []
operator to read the move
value associated to a given key (address
here) in the register. Here
is an example:
Notice how the value we read is an optional value: this is to force the reader to account for a missing key in the map. This requires pattern matching.
#
Updating a MapGiven a map, we may want to add a new binding, remove one, or modify one by changing the value associated to an already existing key. All those operations are called updates.
The values of a PascaLIGO map can be updated using the usual
assignment syntax <map variable>[<key>] := <new value>
. Let us
consider an example.
If multiple bindings need to be updated, PascaLIGO offers a patch instruction for maps, similar to that for records.
See further for the removal of bindings.
To remove a binding from a map, we need its key.
In PascaLIGO, there is a special instruction to remove a binding from a map.
#
Functional Iteration over MapsA functional iterator is a function that traverses a data structure and calls in turn a given function over the elements of that structure to compute some value. Another approach is possible in PascaLIGO: loops (see the relevant section).
There are three kinds of functional iterations over LIGO maps: the iterated operation, the map operation (not to be confused with the map data structure) and the fold operation.
#
Iterated Operation over MapsThe first, the iterated operation, is an iteration over the map with no return value: its only use is to produce side-effects. This can be useful if, for example you would like to check that each value inside of a map is within a certain range and fail with an error otherwise.
The predefined functional iterator implementing the iterated operation
over maps is called Map.iter
. In the following example, the register
of moves is iterated to check that the start of each move is above
3
.
Note that
map_iter
is deprecated.
#
Map Operations over MapsWe may want to change all the bindings of a map by applying to them a
function. This is called a map operation, not to be confused with
the map data structure. The predefined functional iterator
implementing the map operation over maps is called Map.map
. In the
following example, we add 1
to the ordinate of the moves in the
register.
Note that
map_map
is deprecated.
#
Folded Operations over MapsA folded operation is the most general of iterations. The folded function takes two arguments: an accumulator and the structure element at hand, with which it then produces a new accumulator. This enables having a partial result that becomes complete when the traversal of the data structure is over.
The predefined functional iterator implementing the folded operation
over maps is called Map.fold
and is used as follows.
Note that
map_fold
is deprecated.
#
Big MapsOrdinary maps are fine for contracts with a finite lifespan or a bounded number of users. For many contracts however, the intention is to have a map holding many entries, potentially millions of them. The cost of loading those entries into the environment each time a user executes the contract would eventually become too expensive were it not for big maps. Big maps are a data structure offered by Michelson which handles the scaling concerns for us. In LIGO, the interface for big maps is analogous to the one used for ordinary maps.
#
Declaring a MapHere is how we define a big map:
#
Creating an Empty Big MapHere is how to create an empty big map.
#
Creating a Non-empty MapAnd here is how to create a non-empty map value:
Notice the right arrow ->
between the key and its value and the
semicolon separating individual map entries. The value annotation
("<string value>" : address)
means that we cast a string into an
address. -->
#
Accessing ValuesIf we want to access a move from our register
above, we can use the
postfix []
operator to read the associated move
value. However,
the value we read is an optional value (in our case, of type option
(move)
), to account for a missing key. Here is an example:
#
Updating Big MapsThe values of a PascaLIGO big map can be updated using the assignment syntax for ordinary maps
If multiple bindings need to be updated, PascaLIGO offers a patch instruction for maps, similar to that for records.
#
Removing BindingsRemoving a binding in a map is done differently according to the LIGO syntax.
PascaLIGO features a special syntactic construct to remove bindings
from maps, of the form remove <key> from map <map>
. For example,