abstract class HashSetNonEmptyBase<T>
undocumented
Extends: NonEmptyBase<E>
Extended by: HashSetBlock<T>
, HashSetCollision<T>
Type parameters
Name | Description |
---|---|
T | undocumented |
Properties
_NonEmptyType
undocumented
_NonEmptyType
context
undocumented
context
Definition
abstract get context():
HashSetContext
<T>;
isEmpty
undocumented
isEmpty
Methods
[Symbol.iterator]
undocumented
[Symbol.iterator]
add
undocumented
add
addAll
undocumented
addAll
Definition
addAll(values:
StreamSource
<T>): HashSet.NonEmpty<T>;
Parameters
Name | Type | Description |
---|---|---|
values | StreamSource <T> |
asNormal
undocumented
asNormal
assumeNonEmpty
undocumented
assumeNonEmpty
difference
undocumented
difference
Definition
difference(other:
StreamSource
<T>): HashSet<T>;
Parameters
Name | Type | Description |
---|---|---|
other | StreamSource <T> |
filter
undocumented
filter
forEach
undocumented
forEach
Definition
abstract forEach(f: (value: T, index: number, halt: () => void) => void, options?: {
state?:
TraverseState
;
}): void;
Parameters
Name | Type | Description |
---|---|---|
f | (value: T, index: number, halt: () => void) => void | |
options | { state?: TraverseState ; } |
has
undocumented
has
intersect
undocumented
intersect
Definition
intersect(other:
StreamSource
<T>): HashSet<T>;
Parameters
Name | Type | Description |
---|---|---|
other | StreamSource <T> |
nonEmpty
undocumented
nonEmpty
remove
undocumented
remove
removeAll
undocumented
removeAll
Definition
removeAll(values:
StreamSource
<T>): HashSet<T>;
Parameters
Name | Type | Description |
---|---|---|
values | StreamSource <T> |
stream
undocumented
stream
symDifference
undocumented
symDifference
Definition
symDifference(other:
StreamSource
<T>): HashSet<T>;
Parameters
Name | Type | Description |
---|---|---|
other | StreamSource <T> |
toArray
undocumented
toArray
Definition
abstract toArray():
ArrayNonEmpty
<T>;
union
undocumented
union
Definition
union(other:
StreamSource
<T>): HashSet.NonEmpty<T>;
Parameters
Name | Type | Description |
---|---|---|
other | StreamSource <T> |