310 lines
7.3 KiB
Markdown
310 lines
7.3 KiB
Markdown
---
|
|
id: maps-records
|
|
title: Maps, Records
|
|
---
|
|
|
|
So far we've seen pretty basic data types. LIGO also offers more complex built-in constructs, such as Maps and Records.
|
|
|
|
## Maps
|
|
|
|
Maps are natively available in Michelson, and LIGO builds on top of them. A requirement for a Map is that its keys be of the same type, and that type must be comparable.
|
|
|
|
Here's how a custom map type is defined:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
type ledger is map(address, tez);
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
type ledger = (address, tez) map
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
type ledger = map(address, tez);
|
|
```
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
And here's how a map value is populated:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
|
|
```pascaligo
|
|
const ledger: ledger = map
|
|
("tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx": address) -> 1000mutez;
|
|
("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address) -> 2000mutez;
|
|
end
|
|
```
|
|
> Notice the `->` between the key and its value and `;` to separate individual map entries.
|
|
>
|
|
> `("<string value>": address)` means that we type-cast a string into an address.
|
|
|
|
<!--CameLIGO-->
|
|
|
|
```cameligo
|
|
let ledger: ledger = Map.literal
|
|
[ (("tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx": address), 1000mutez) ;
|
|
(("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address), 2000mutez) ;
|
|
]
|
|
```
|
|
> Map.literal constructs the map from a list of key-value pair tuples, `(<key>, <value>)`.
|
|
> Note also the `;` to separate individual map entries.
|
|
>
|
|
> `("<string value>": address)` means that we type-cast a string into an address.
|
|
|
|
<!--ReasonLIGO-->
|
|
|
|
```reasonligo
|
|
let ledger: ledger =
|
|
Map.literal([
|
|
("tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx": address, 1000mutez),
|
|
("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address, 2000mutez),
|
|
]);
|
|
```
|
|
> Map.literal constructs the map from a list of key-value pair tuples, `(<key>, <value>)`.
|
|
>
|
|
> `("<string value>": address)` means that we type-cast a string into an address.
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
### Accessing map values by key
|
|
|
|
If we want to access a balance from our ledger above, we can use the `[]` operator/accessor to read the associated `tez` value. However, the value we'll get will be wrapped as an optional; in our case `option(tez)`. Here's an example:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
const balance: option(tez) = ledger[("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address)];
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
|
|
```cameligo
|
|
let balance: tez option = Map.find_opt ("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address) ledger
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
|
|
```reasonligo
|
|
let balance: option(tez) =
|
|
Map.find_opt("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address, ledger);
|
|
```
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
#### Obtaining a map value forcefully
|
|
|
|
Accessing a value in a map yields an option, however you can also get the value directly:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
const balance: tez = get_force(("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address), ledger);
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
|
|
```cameligo
|
|
let balance: tez = Map.find ("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address) ledger
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
|
|
```reasonligo
|
|
let balance: tez =
|
|
Map.find("tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN": address, ledger);
|
|
```
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
### Iteration over the contents of a map
|
|
|
|
There are three kinds of iteration on LIGO maps, `iter`, `map` and `fold`. `iter`
|
|
is an iteration over the map with no return value, its only use is to
|
|
generate 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, with an error thrown
|
|
otherwise.
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
function iter_op (const m : ledger) : unit is
|
|
block {
|
|
function aggregate (const i : address ; const j : tez) : unit is block
|
|
{ if (j > 100mutez) then skip else failwith("fail") } with unit ;
|
|
} with map_iter(aggregate, m) ;
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
let iter_op (m : ledger) : unit =
|
|
let assert_eq = fun (i: address) (j: tez) -> assert (j > 100tz)
|
|
in Map.iter assert_eq m
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
let iter_op = (m: ledger): unit => {
|
|
let assert_eq = (i: address, j: tez) => assert(j > 100mutez);
|
|
Map.iter(assert_eq, m);
|
|
};
|
|
```
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
`map` is a way to create a new map by modifying the contents of an existing one.
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
function map_op (const m : ledger) : ledger is
|
|
block {
|
|
function increment (const i : address ; const j : tez) : tez is block { skip } with j + 1mutez ;
|
|
} with map_map(increment, m) ;
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
let map_op (m : ledger) : ledger =
|
|
let increment = fun (_: address) (j: tez) -> j + 1tz
|
|
in Map.map increment m
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
let map_op = (m: ledger): ledger => {
|
|
let increment = (ignore: address, j: tez) => j + 1tz;
|
|
Map.map(increment, m);
|
|
};
|
|
```
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
`fold` is an aggregation function that return the combination of a maps contents.
|
|
|
|
The fold is a loop which extracts an element of the map on each iteration. It then
|
|
provides this element and an existing value to a folding function which combines them.
|
|
On the first iteration, the existing value is an initial expression given by the
|
|
programmer. On each subsequent iteration it is the result of the previous iteration.
|
|
It eventually returns the result of combining all the elements.
|
|
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
function fold_op (const m : ledger) : tez is
|
|
block {
|
|
function aggregate (const j : tez ; const cur : (address * tez)) : tez is j + cur.1 ;
|
|
} with map_fold(aggregate, m , 10mutez)
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
let fold_op (m : ledger) : ledger =
|
|
let aggregate = fun (j: tez) (cur: address * tez) -> j + cur.1 in
|
|
Map.fold aggregate m 10tz
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
let fold_op = (m: ledger): ledger => {
|
|
let aggregate = (j: tez, cur: (address, tez)) => j + cur[1];
|
|
Map.fold(aggregate, m, 10tz);
|
|
};
|
|
|
|
```
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
## Records
|
|
|
|
Records are a construct introduced in LIGO, and are not natively available in Michelson. The LIGO compiler translates records into Michelson `Pairs`.
|
|
|
|
Here's how a custom record type is defined:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
type user is record
|
|
id: nat;
|
|
is_admin: bool;
|
|
name: string;
|
|
end
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
type user = {
|
|
id: nat;
|
|
is_admin: bool;
|
|
name: string;
|
|
}
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
type user = {
|
|
id: nat,
|
|
is_admin: bool,
|
|
name: string
|
|
};
|
|
```
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
And here's how a record value is populated:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
const user: user = record
|
|
id = 1n;
|
|
is_admin = True;
|
|
name = "Alice";
|
|
end
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
let user: user = {
|
|
id = 1n;
|
|
is_admin = true;
|
|
name = "Alice";
|
|
}
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
let user: user = {
|
|
id: 1n,
|
|
is_admin: true,
|
|
name: "Alice"
|
|
};
|
|
```
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|
|
|
|
|
|
### Accessing record keys by name
|
|
|
|
If we want to obtain a value from a record for a given key, we can do the following:
|
|
|
|
<!--DOCUSAURUS_CODE_TABS-->
|
|
<!--Pascaligo-->
|
|
```pascaligo
|
|
const is_admin: bool = user.is_admin;
|
|
```
|
|
|
|
<!--CameLIGO-->
|
|
```cameligo
|
|
let is_admin: bool = user.is_admin
|
|
```
|
|
|
|
<!--ReasonLIGO-->
|
|
```reasonligo
|
|
let is_admin: bool = user.is_admin;
|
|
```
|
|
|
|
<!--END_DOCUSAURUS_CODE_TABS-->
|