Skip to content

HashSet[A: A, H: HashFunction[A!] val]

[Source]

A set, built on top of a HashMap. This is implemented as map of an alias of a type to itself

class ref HashSet[A: A, H: HashFunction[A!] val] is
  Comparable[HashSet[A, H] box] ref

Implements


Constructors

create

[Source]

Defaults to a prealloc of 8.

new ref create(
  prealloc: USize val = 8)
: HashSet[A, H] ref^

Parameters

  • prealloc: USize val = 8

Returns


Public Functions

size

[Source]

The number of items in the set.

fun box size()
: USize val

Returns


space

[Source]

The available space in the set.

fun box space()
: USize val

Returns


apply

[Source]

Return the value if its in the set, otherwise raise an error.

fun box apply(
  value: box->A!)
: this->A ?

Parameters

  • value: box->A!

Returns

  • this->A ?

contains

[Source]

Checks whether the set contains the value.

fun box contains(
  value: box->A!)
: Bool val

Parameters

  • value: box->A!

Returns


clear

[Source]

Remove all elements from the set.

fun ref clear()
: None val

Returns


set

[Source]

Add a value to the set.

fun ref set(
  value: A)
: None val

Parameters

  • value: A

Returns


unset

[Source]

Remove a value from the set.

fun ref unset(
  value: box->A!)
: None val

Parameters

  • value: box->A!

Returns


extract

[Source]

Remove a value from the set and return it. Raises an error if the value wasn't in the set.

fun ref extract(
  value: box->A!)
: A^ ?

Parameters

  • value: box->A!

Returns

  • A^ ?

union

[Source]

Add everything in that to the set.

fun ref union(
  that: Iterator[A^] ref)
: None val

Parameters

Returns


intersect[optional K: HashFunction[box->A!] val]

[Source]

Remove everything that isn't in that.

fun ref intersect[optional K: HashFunction[box->A!] val](
  that: HashSet[box->A!, K] ref)
: None val

Parameters

Returns


difference

[Source]

Remove elements in this which are also in that. Add elements in that which are not in this.

fun ref difference(
  that: Iterator[A^] ref)
: None val

Parameters

Returns


remove

[Source]

Remove everything that is in that.

fun ref remove(
  that: Iterator[box->A!] ref)
: None val

Parameters

Returns


add[optional K: HashFunction[this->A!] val]

[Source]

Add a value to the set.

fun box add[optional K: HashFunction[this->A!] val](
  value: this->A!)
: HashSet[this->A!, K] ref^

Parameters

  • value: this->A!

Returns


sub[optional K: HashFunction[this->A!] val]

[Source]

Remove a value from the set.

fun box sub[optional K: HashFunction[this->A!] val](
  value: box->this->A!)
: HashSet[this->A!, K] ref^

Parameters

  • value: box->this->A!

Returns


op_or[optional K: HashFunction[this->A!] val]

[Source]

Create a set with the elements of both this and that.

fun box op_or[optional K: HashFunction[this->A!] val](
  that: this->HashSet[A, H] ref)
: HashSet[this->A!, K] ref^

Parameters

Returns


op_and[optional K: HashFunction[this->A!] val]

[Source]

Create a set with the elements that are in both this and that.

fun box op_and[optional K: HashFunction[this->A!] val](
  that: this->HashSet[A, H] ref)
: HashSet[this->A!, K] ref^

Parameters

Returns


op_xor[optional K: HashFunction[this->A!] val]

[Source]

Create a set with the elements that are in either set but not both.

fun box op_xor[optional K: HashFunction[this->A!] val](
  that: this->HashSet[A, H] ref)
: HashSet[this->A!, K] ref^

Parameters

Returns


without[optional K: HashFunction[this->A!] val]

[Source]

Create a set with the elements of this that are not in that.

fun box without[optional K: HashFunction[this->A!] val](
  that: this->HashSet[A, H] ref)
: HashSet[this->A!, K] ref^

Parameters

Returns


clone[optional K: HashFunction[this->A!] val]

[Source]

Create a clone. The element type may be different due to aliasing and viewpoint adaptation.

fun box clone[optional K: HashFunction[this->A!] val]()
: HashSet[this->A!, K] ref^

Returns


eq

[Source]

Returns true if the sets contain the same elements.

fun box eq(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


ne

[Source]

Returns false if the sets contain the same elements.

fun box ne(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


lt

[Source]

Returns true if every element in this is also in that, and this has fewer elements than that.

fun box lt(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


le

[Source]

Returns true if every element in this is also in that.

fun box le(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


gt

[Source]

Returns true if every element in that is also in this, and this has more elements than that.

fun box gt(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


ge

[Source]

Returns true if every element in that is also in this.

fun box ge(
  that: HashSet[A, H] box)
: Bool val

Parameters

Returns


next_index

[Source]

Given an index, return the next index that has a populated value. Raise an error if there is no next populated index.

fun box next_index(
  prev: USize val = call)
: USize val ?

Parameters

Returns


index

[Source]

Returns the value at a given index. Raise an error if the index is not populated.

fun box index(
  i: USize val)
: this->A ?

Parameters

Returns

  • this->A ?

values

[Source]

Return an iterator over the values.

fun box values()
: SetValues[A, H, this->HashSet[A, H] ref] ref^

Returns


compare

[Source]

fun box compare(
  that: HashSet[A, H] box)
: (Less val | Equal val | Greater val)

Parameters

Returns