interface RSetBase.NonEmpty<T,Tp>
undocumented
Extends: Streamable.NonEmpty<T>, RSetBase<T,Tp>, VariantSetBase.NonEmpty<T,Tp>
Implemented by: OrderedSetBase.NonEmpty<T,Tp>, SortedSet.NonEmpty<T>, HashSet.NonEmpty<T>
Type parameters
| Name | Constraints | Default | Description |
|---|---|---|---|
| T | undocumented | ||
| Tp | RSetBase.Types | RSetBase.Types | undocumented |
Properties
context
Returns the context associated to this collection instance.
contextcontext associated to this collection instance.isEmpty
Returns false since this collection is known to be non-empty
isEmptysize
Returns the number of values in the collection.
sizeMethods
[Symbol.iterator]
Returns a FastIterator instance used to iterate over the values of this Iterable.
[Symbol.iterator]FastIterator instance used to iterate over the values of this Iterable.add
Returns the collection with given value added.
addvalue added.addAll
Returns the collection with the values in given values StreamSource added.
addAllvalues StreamSource added.Definition
addAll(values: StreamSource<T>): WithElem<Tp, T>['nonEmpty'];
Parameters
| Name | Type | Description |
|---|---|---|
values | StreamSource<T> | a StreamSource containing values to add |
HashSet.of(1, 2, 3).addAll(10, 11).toArray() // => [1, 2, 3, 10, 11]
Overrides
asNormal
Returns this collection typed as a 'possibly empty' collection.
asNormalassumeNonEmpty
Returns a self reference since this collection is known to be non-empty.
assumeNonEmptydifference
Returns a collection where each value of given other StreamSource is removed from this collection.
differenceother StreamSource is removed from this collection.Definition
difference<U = T>(other: StreamSource<RelatedTo<T, U>>): WithElem<Tp, T>['normal'];
Type parameters
| Name | Default | Description |
|---|---|---|
| U | T |
Parameters
| Name | Type | Description |
|---|---|---|
other | StreamSource<RelatedTo<T, U>> | a StreamSource containing values |
HashSet.of(1, 2, 3).difference(HashSet.of(1, 3)).toArray() // => [2]
Overrides
filter
Returns a collection containing only those entries that satisfy given pred predicate.
filterpred predicate.Definitions
filter<TF extends T>(pred: (value: T, index: number, halt: () => void) => value is TF, options?: {
negate?: false | undefined;
}): WithElem<Tp, TF>['normal'];
filter<TF extends T>(pred: (value: T, index: number, halt: () => void) => value is TF, options: {
negate: true;
}): WithElem<Tp, Exclude<T, TF>>['normal'];
filter(pred: (value: T, index: number, halt: () => void) => boolean, options?: {
negate?: boolean;
}): WithElem<Tp, T>['normal'];
Type parameters
| Name | Constraints | Description |
|---|---|---|
| TF | T |
Parameters
| Name | Type | Description |
|---|---|---|
pred | (value: T, index: number, halt: () => void) => value is TF | a predicate function receiving: - value: the next value- index: the entry index- halt: a function that, when called, ensures no next elements are passed |
options | {negate?: false | undefined;} | (optional) an object containing the following properties: - negate: (default: false) when true will negate the predicate |
if the predicate is a type guard, the return type is automatically inferred
HashSet.of(1, 2, 3).filter(value < 3).toArray()
// => [1, 2]
Overrides
forEach
Performs given function f for each value of the collection, using given state as initial traversal state.
forEachf for each value of the collection, using given state as initial traversal state.Definition
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 | the function to perform for each element, receiving: - value: the next element- index: the index of the element- halt: a function that, if called, ensures that no new elements are passed |
options | {state?: TraverseState;} |
HashSet.of(1, 2, 3).forEach((value, i, halt) => {
console.log([value, i]);
if (i >= 1) halt();
})
// => logs [1, 0] [2, 1]
O(N)
Overrides
has
Returns true if given value is in the collection.
hasvalue is in the collection.intersect
Returns a collection containing values that are both in this collection, and in the given other StreamSource.
intersectother StreamSource.Definition
intersect<U = T>(other: StreamSource<RelatedTo<T, U>>): WithElem<Tp, T>['normal'];
Type parameters
| Name | Default | Description |
|---|---|---|
| U | T |
Parameters
| Name | Type | Description |
|---|---|---|
other | StreamSource<RelatedTo<T, U>> | a StreamSource containing values |
HashSet.of(1, 2, 3).interface(HashSet.of(1, 3)).toArray() // => [1, 3]
Overrides
nonEmpty
Returns true since this collection is know to be non-empty
nonEmptyremove
Returns the collection with given value removed.
removevalue removed.Definition
remove<U = T>(value: RelatedTo<T, U>): WithElem<Tp, T>['normal'];
Type parameters
| Name | Default | Description |
|---|---|---|
| U | T |
Parameters
| Name | Type | Description |
|---|---|---|
value | RelatedTo<T, U> | the value to remove |
const s = HashSet.of(1, 2, 3)
s.remove(2).toArray() // => [1, 3]
s.remove(10).toArray() // => [1, 2, 3]
Overrides
removeAll
Returns the collection with all values in the given values StreamSource removed.
removeAllvalues StreamSource removed.Definition
removeAll<U = T>(values: StreamSource<RelatedTo<T, U>>): WithElem<Tp, T>['normal'];
Type parameters
| Name | Default | Description |
|---|---|---|
| U | T |
Parameters
| Name | Type | Description |
|---|---|---|
values | StreamSource<RelatedTo<T, U>> | a StreamSource containing values to remove |
HashSet.of(1, 2, 3).removeAll([1, 3]).toArray()
// => [2]
Overrides
stream
Returns a non-empty Stream containing all values of this collection.
streamDefinition
stream(): Stream.NonEmpty<T>;
HashSet.of(1, 2, 3).stream().toArray() // => [1, 2, 3]
Overrides
symDifference
Returns a collection of the values that are either in this collection or in the other StreamSource, but not in both.
symDifferenceother StreamSource, but not in both.Definition
symDifference(other: StreamSource<T>): WithElem<Tp, T>['normal'];
Parameters
| Name | Type | Description |
|---|---|---|
other | StreamSource<T> | a StreamSource containing values |
HashSet.of(1, 2, 3).symDifference([2, 4]).toArray()
// => [1, 3, 4]
Overrides
toArray
Returns a non-empty array containing all values in this collection.
toArrayDefinition
toArray(): ArrayNonEmpty<T>;
HashSet.of(1, 2, 3).toArray() // => [1, 2, 3]
O(log(N)) @note it is safe to mutate the returned array, however, the array elements are not copied, thus should be treated as read-only
Overrides
toBuilder
Returns a builder object containing the values of this collection.
toBuildertoJSON
Returns a JSON representation of this collection.
toJSONtoString
Returns a string representation of this collection.
toStringunion
Returns a collection containing all values from this collection and all values of given other StreamSource.
unionother StreamSource.Definition
union(other: StreamSource<T>): WithElem<Tp, T>['nonEmpty'];
Parameters
| Name | Type | Description |
|---|---|---|
other | StreamSource<T> | a StreamSource containing values |
HashSet.of(1, 2, 3).union(HashSet.of(2, 4, 6)).toArray()
// => [1, 2, 3, 4, 6]