BTree.opBinaryRight

Implements the "in" operator for membership.

class BTree(ValueT, size_t NodeSizeV = 256, alias ValueLessF = "a < b")
bool
opBinaryRight
(
string op
)
(
ValueT value
)
if (
op == "in"
)
if (
is(typeof(binaryFun!ValueLessF(ValueT.init, ValueT.init)) : bool)
)

Meta