OrderedIndex.opBinaryRight

in operator. Check to see if the given element exists in the container.

Complexity: O(log(n))

  1. bool opBinaryRight(Elem e)
  2. bool opBinaryRight(K k)
    mixin template OrderedIndex(size_t N, bool allowDuplicates, alias KeyFromValue, alias Compare, ThisContainer)
    bool
    opBinaryRight
    (
    string op
    K
    )
    (
    K k
    )
    if (
    op == "in" &&
    isImplicitlyConvertible!(K, KeyType)
    )

Meta