HashSet.insert

Inserts the given item into the set.

  1. bool insert(T value)
    struct HashSet(T, Allocator = Mallocator, alias hashFunction = generateHash!T, bool supportGC = shouldAddGCRange!T)
    bool
    insert
    ()
  2. alias put = insert

Return Value

Type: bool

true if the value was actually inserted, or false if it was already present.

Meta