stdlib - 0.11.0
Source
Index
Stdlib.Data.BinaryTree
Contents
Description
Definitions
Description
Definitions
type
BinaryTree
(
A
:
Type
)
Source
#
Constructors
|
leaf
|
node
@
{
left
:
BinaryTree
A
;
element
:
A
;
right
:
BinaryTree
A
;
}