definition:
|
delete :: a -> RedBlackTree a -> RedBlackTree a
delete e (RedBlackTree eqIns eqLk lt t) =
RedBlackTree eqIns eqLk lt (blackenRoot (deleteTree eqLk lt e t))
where
blackenRoot Empty = Empty
blackenRoot (Tree _ x l r) = Tree Black x l r
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Deletes entry from red black tree.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{RedBlackTree}) |-> {RedBlackTree}}
|
name:
|
delete
|
precedence:
|
no precedence defined
|
result-values:
|
{RedBlackTree}
|
signature:
|
a -> RedBlackTree a -> RedBlackTree a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|