abstract datatype: cont()
gt_fun() = fun((Item, Item) -> boolean())
abstract datatype: state()
append/2 | append an item that is greater than the last appended item. |
from_list/1 | initialise from a list sorted in ascending order. |
from_list/2 | |
len/1 | |
new/0 | |
search/2 | |
takewhile/2 | |
to_list/1 |
append an item that is greater than the last appended item
from_list(List::list()) -> state()
initialise from a list sorted in ascending order
len(X1::state()) -> non_neg_integer()
new() -> state()
search(SearchFun::fun((term()) -> higher | lower | equal), Rows::state() | cont()) -> {term(), cont()} | undefined
to_list(X1::state()) -> list()
Generated by EDoc