https://gitlab.com/tezos/tezos
Raw File
Tip revision: 859ad53d118deb65fda70547abe20731c6e92aba authored by Emma Turner on 09 October 2023, 10:54:43 UTC
nix: disable stackprotector on all platforms
Tip revision: 859ad53
map_mem_string.tz
parameter string;
storage (pair (map string nat) (option bool)) ;
# stores (map, Some flag) where flag = parameter is a member of
# the map in first component of storage
code { UNPAIR;
       DIP { CAR; DUP };
       MEM; SOME; SWAP; PAIR; NIL operation; PAIR;}
back to top