()
| 1756 | // sortedMapNode represents a branch or leaf node in the sorted map. |
| 1757 | type sortedMapNode[K, V any] interface { |
| 1758 | minKey() K |
| 1759 | indexOf(key K, c Comparer[K]) int |
| 1760 | get(key K, c Comparer[K]) (value V, ok bool) |
| 1761 | set(key K, value V, c Comparer[K], mutable bool, resized *bool) (sortedMapNode[K, V], sortedMapNode[K, V]) |
no outgoing calls