(tree: RBT.RedBlackTree<K, V>)
| 71 | } |
| 72 | |
| 73 | const makeImpl = <K, V>(tree: RBT.RedBlackTree<K, V>): SortedMap<K, V> => { |
| 74 | const self = Object.create(SortedMapProto) |
| 75 | self.tree = tree |
| 76 | return self |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * @since 2.0.0 |
no test coverage detected