stdlib - 0.11.0

Stdlib.Data.BinaryTree

Definitions

type BinaryTree (A : Type)Source#

Constructors

| leaf
| node@{ left : BinaryTree A; element : A; right : BinaryTree A; }