Subject: | False values cannot be inserted |
Strings that evaluate false in a boolean context cannot be inserted into
Tree::AVLs. The following dies with "Error: cannot insert uninitialized
object into AVL tree":
my $tree = Tree::AVL->new;
$tree->insert("0");
Inserting the empty string has similar results.