MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / operator <

Method operator <

code/data-structures/avl_map.cpp:6–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4 K key; V value;
5 node(K k, V v) : key(k), value(v) { }
6 bool operator <(const node &other) const {
7 return key < other.key; } };
8 avl_tree<node> tree;
9 V& operator [](K key) {
10 typename avl_tree<node>::node *n =

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected