1 USING: help.syntax help.markup assocs ;
5 { $syntax "TREE{ { key value }... }" }
6 { $values { "key" "a key" } { "value" "a value" } }
7 { $description "Literal syntax for an unbalanced tree." } ;
10 { $values { "tree" tree } }
11 { $description "Creates an empty unbalanced binary tree" } ;
14 { $values { "assoc" assoc } { "tree" tree } }
15 { $description "Converts any " { $link assoc } " into an unbalanced binary tree." } ;
18 { $class-description "This is the class for unbalanced binary search trees. It is not usually intended to be used directly but rather as a basis for other trees." } ;
20 ARTICLE: { "trees" "intro" } "Binary search trees"
21 "This is a library for unbalanced binary search trees. It is not intended to be used directly in most situations but rather as a base class for new trees, because performance can degrade to linear time storage/retrieval by the number of keys. These binary search trees conform to the assoc protocol."
23 { $subsection <tree> }
25 { $subsection POSTPONE: TREE{ } ;
28 ABOUT: { "trees" "intro" }