first property
Implementation
@override
V get first {
_TreeNode<V>? min = _root?.minimumNode;
if (min != null) {
return min.object;
}
throw StateError('No first element');
}
@override
V get first {
_TreeNode<V>? min = _root?.minimumNode;
if (min != null) {
return min.object;
}
throw StateError('No first element');
}