ImmutableSet
Edit on GitHubAn ImmutableSet is a collection of unique values. Operations on an ImmutableSet do not mutate the set’s internal state.
Added in 0.5.4
No other changes yet.
Types
Type declarations included in the ImmutableSet module.
ImmutableSet.ImmutableSet
Values
Functions and constants for working with ImmutableSets.
ImmutableSet.empty
Added in 0.5.4
No other changes yet.
An empty set
ImmutableSet.size
Added in 0.5.4
No other changes yet.
Provides the count of values within the set.
Parameters:
param | type | description |
---|---|---|
set |
ImmutableSet<a> |
The set to inspect |
Returns:
type | description |
---|---|
Number |
The count of elements in the set |
ImmutableSet.isEmpty
Added in 0.5.4
No other changes yet.
Determines if the set contains no elements.
Parameters:
param | type | description |
---|---|---|
set |
ImmutableSet<a> |
The set to inspect |
Returns:
type | description |
---|---|
Bool |
true if the given set is empty or false otherwise |
ImmutableSet.add
Added in 0.5.4
No other changes yet.
Produces a new set by inserting the given value into the set. If the value already exists, the new set will have the same elements as the input set.
Parameters:
param | type | description |
---|---|---|
key |
a |
The value to add |
set |
ImmutableSet<a> |
The base set |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A new set containing the new element |
ImmutableSet.contains
Added in 0.5.4
No other changes yet.
Determines if the set contains the given value.
Parameters:
param | type | description |
---|---|---|
key |
a |
The value to search for |
set |
ImmutableSet<a> |
The set to search |
Returns:
type | description |
---|---|
Bool |
true if the set contains the given value or false otherwise |
ImmutableSet.remove
Added in 0.5.4
No other changes yet.
Produces a new set without the given element. If the value doesn’t exist in the set, the set will be returned unmodified.
Parameters:
param | type | description |
---|---|---|
key |
a |
The value to exclude |
set |
ImmutableSet<a> |
The set to exclude from |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A new set without the excluded element |
ImmutableSet.forEach
Added in 0.5.4
No other changes yet.
Iterates the set, calling an iterator function on each element.
Parameters:
param | type | description |
---|---|---|
fn |
a -> Void |
The iterator function to call with each element |
set |
ImmutableSet<a> |
The set to iterate |
ImmutableSet.reduce
Added in 0.5.4
No other changes yet.
Combines all elements of a set using a reducer function.
Parameters:
param | type | description |
---|---|---|
fn |
(a, b) -> a |
The reducer function to call on each element, where the value returned will be the next accumulator value |
init |
a |
The initial value to use for the accumulator on the first iteration |
set |
ImmutableSet<b> |
The set to iterate |
Returns:
type | description |
---|---|
a |
The final accumulator returned from fn |
ImmutableSet.filter
Added in 0.5.4
No other changes yet.
Produces a new set without the elements from the input set where a predicate function returns false
.
Parameters:
param | type | description |
---|---|---|
fn |
a -> Bool |
The predicate function to indicate which elements to exclude from the set, where returning false indicates the value should be excluded |
set |
ImmutableSet<a> |
The set to iterate |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A new set excluding the elements not fulfilling the predicate |
ImmutableSet.reject
Added in 0.5.4
No other changes yet.
Produces a new set without the elements from the input set where a predicate function returns true
.
Parameters:
param | type | description |
---|---|---|
fn |
a -> Bool |
The predicate function to indicate which elements to exclude from the set, where returning true indicates the value should be excluded |
set |
ImmutableSet<a> |
The set to iterate |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A new set excluding the elements fulfilling the predicate |
ImmutableSet.union
Added in 0.5.4
No other changes yet.
Combines two sets into a single set containing all elements from both sets.
Parameters:
param | type | description |
---|---|---|
set1 |
ImmutableSet<a> |
The first set to combine |
set2 |
ImmutableSet<a> |
The second set to combine |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A set containing all elements of both sets |
ImmutableSet.diff
Added in 0.5.4
No other changes yet.
Combines two sets into a single set containing only the elements not shared between both sets.
Parameters:
param | type | description |
---|---|---|
set1 |
ImmutableSet<a> |
The first set to combine |
set2 |
ImmutableSet<a> |
The second set to combine |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A set containing only unshared elements from both sets |
ImmutableSet.intersect
Added in 0.5.4
No other changes yet.
Combines two sets into a single set containing only the elements shared between both sets.
Parameters:
param | type | description |
---|---|---|
set1 |
ImmutableSet<a> |
The first set to combine |
set2 |
ImmutableSet<a> |
The second set to combine |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A set containing only shared elements from both sets |
ImmutableSet.fromList
Added in 0.5.4
No other changes yet.
Creates a set from a list.
Parameters:
param | type | description |
---|---|---|
list |
List<a> |
The list to convert |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A set containing all list values |
ImmutableSet.toList
Added in 0.5.4
No other changes yet.
Converts a set into a list of its elements.
Parameters:
param | type | description |
---|---|---|
set |
ImmutableSet<a> |
The set to convert |
Returns:
type | description |
---|---|
List<a> |
A list containing all set values |
ImmutableSet.fromArray
Added in 0.5.4
No other changes yet.
Creates a set from an array.
Parameters:
param | type | description |
---|---|---|
array |
Array<a> |
The array to convert |
Returns:
type | description |
---|---|
ImmutableSet<a> |
A set containing all array values |
ImmutableSet.toArray
Added in 0.5.4
No other changes yet.
Converts a set into an array of its elements.
Parameters:
param | type | description |
---|---|---|
set |
ImmutableSet<a> |
The set to convert |
Returns:
type | description |
---|---|
Array<a> |
An array containing all set values |