Exported Functions | |
---|---|
fold/3 | Applies a fun/2 to every element of a tuple of tuples, in row major order. |
from_lol/1 | |
get/3 | Retrieves a single term from the given X,Y location in a tuple of tuples. |
new/3 | Constructs a new tuple of tuples of the given width and height. |
print/1 | Displays the tuple of tuples on the standard output. |
put/4 | Replaces a term with a new term in a tuple of tuples. |
to_lol/1 |
fold(fun(), tot(), term()) -> term()
Applies a fun/2 to every element of a tuple of tuples, in row major order.
from_lol(Arg1) -> term()
get(integer(), integer(), tot()) -> term()
Retrieves a single term from the given X,Y location in a tuple of tuples.
new(integer(), integer(), term()) -> tot()
Constructs a new tuple of tuples of the given width and height.
print(tot()) -> ok
Displays the tuple of tuples on the standard output. Assumes that each term in the ToT is a string.
put(integer(), integer(), tot(), term()) -> tot()
Replaces a term with a new term in a tuple of tuples.
to_lol(Arg1) -> term()