OpenHashSet.opBinaryRight

  1. bool contains(T item)
  2. bool opBinaryRight(T item)
    struct OpenHashSet(T, Allocator = Mallocator, alias hashFunction = generateHash!T, bool supportGC = shouldAddGCRange!T)
    inout nothrow
    bool
    opBinaryRight
    (
    string op
    )
    ()
    if (
    op == "in"
    )

Return Value

Type: bool

true if the hash set contains the given item, false otherwise.

Meta