DenseSetFilter.opBinary

Check if element e is stored/contained.

  1. bool contains(E e)
  2. bool opBinaryRight(E e)
  3. typeof(this) opBinary(typeof(this) e)
    struct DenseSetFilter(E, Growable growable = Growable.yes, Copyable copyable = Copyable.no)
    @safe pure nothrow @nogc @property const
    typeof(this)
    opBinary
    (
    string op
    )
    (
    auto ref in typeof(this) e
    )
    if (
    op == "|" ||
    op == "&"
    ||
    op == "^"
    )
    if (
    isDenseSetFilterable!E
    )

Meta