Gets the number of key-value pairs in the tree.
()
| 133 | } |
| 134 | /** Gets the number of key-value pairs in the tree. */ |
| 135 | get length() { |
| 136 | return this._size |
| 137 | } |
| 138 | /** Returns true iff the tree contains no key-value pairs. */ |
| 139 | get isEmpty() { |
| 140 | return this._size === 0 |
nothing calls this directly
no outgoing calls
no test coverage detected