BTree.opBinaryRight

in operator. Check to see if the given element exists in the container. In case of duplicate keys, it returns one of those, unspecified order.

struct BTree(K, V, alias less = "a < b", bool allowDuplicates = false, bool duplicateKeyIsUB = false)
nothrow @nogc inout
inout(V)*
opBinaryRight
(
string op
)
(
K key
)
if (
op == "in"
)

Meta