-
Notifications
You must be signed in to change notification settings - Fork 13
Labels
enhancementNew feature or requestNew feature or request
Description
Some function returns null:
console.log(bst.lowerBound(60).getKey()); // 60
console.log(bst.lowerBound(60, false).getKey()); // 50
console.log(bst.lowerBound(10)); // nullHowever, this is not reflected in the TS type definition file
| lowerBound(k: T, includeEqual?: boolean): BinarySearchTreeNode<T, U>; |
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Done