package tezos-context

  1. Overview
  2. Docs

A list type optimised for memory efficiency of small list sizes (~ 1-6).

This API has the same semantics as that of List.

type +'a t
val empty : _ t
val cons : 'a -> 'a t -> 'a t
val iter : ('a -> unit) -> 'a t -> unit
val exists : ('a -> bool) -> 'a t -> bool