Small sets
SmallCollections.AbstractSmallSet
— TypeAbstractSmallSet{N,T} <: AbstractSet{T}
This is the supertype of SmallSet{N,T}
and MutableSmallSet{N,T}
.
See also SmallSet
, MutableSmallSet
.
SmallCollections.SmallSet
— TypeSmallSet{N,T} <: AbstractSmallSet{N,T}
SmallSet{N,T}()
SmallSet{N,T}(itr; unique = itr isa AbstractSet)
An immutable set with element type T
that can store up to N
entries. All entries come from the iterator itr
provided at construction time.
If the element type is omitted, it will be inferred from the iterator, if possible. If unique
is set to true
, then the elements of itr
are assumed to be distinct.
See also AbstractSmallSet
, MutableSmallSet
.
SmallCollections.MutableSmallSet
— TypeMutableSmallSet{N,T} <: AbstractSmallSet{N,T}
MutableSmallSet{N,T}()
MutableSmallSet{N,T}(itr; unique = itr isa AbstractSet)
A set with element type T
that can store up to N
entries. The set is mutable and implements Julia's set interface.
If the element type is omitted, it will be inferred from the iterator, if possible. If unique
is set to true
, then the elements of itr
are assumed to be distinct.
See also AbstractSmallSet
, SmallSet
.
SmallCollections.capacity
— Methodcapacity(::Type{<:AbstractSmallSet}) -> Int
capacity(d::AbstractSmallSet) -> Int
Return the largest number of elements the given dictionary type can hold.
Base.empty
— Methodempty(d::AbstractSmallDict{N,K,V}) where {N,K,V,W} -> AbstractSmallVector{N,K,V}
empty(d::AbstractSmallDict{N,K,V}, W::Type) where {N,K,V,W} -> AbstractSmallVector{N,K,W}
empty(d::AbstractSmallDict{N,K,V}, L::Type, W::Type) where {N,K,V,L,W} -> AbstractSmallVector{N,L,W}
Return an empty AbstractSmallDictionary
with the same capacity as d
, and with valtype
changed to W
and keytype
changed to L
if so specified. The resulting dictionary is mutable if and only if d
is so.
SmallCollections.push
— Methodpush(s::AbstractSmallSet{N,T}, xs...) where {N,T} -> Tuple{SmallSet{N,T}, T}
Return the set that is obtained from s
by adding the elements given as arguments.
See also Base.push!
.
SmallCollections.pop
— Methodpop(s::AbstractSmallSet{N,T}) where {N,T} -> Tuple{SmallSet{N,T}, T}
Remove an element x
from s
and return the new set together with x
. The set s
must not be empty.
See also Base.pop!
.
SmallCollections.pop
— Methodpop(s::AbstractSmallSet{N,T}, x) where {N,T} -> Tuple{SmallSet{N,T}, T}
Remove the element x
from s
and return the new set together with the stored element equal to x
.
See also Base.pop!
, delete
.
SmallCollections.pop
— Methodpop(s::AbstractSmallSet{N,T}, x, default::U) where {N,T,U} -> Tuple{SmallSet{N,T}, Union{T,U}}
If s
has the element x
, remove it and return the new set together with the stored element equal to x
. Otherwise return the tuple (SmallSet(d), default)
.
See also Base.pop!
.
SmallCollections.delete
— Methoddelete(s::AbstractSmallSet{N,T}, x) where {N,T} -> SmallSet{N,T}
Remove the element x
from s
(if it exists) and return the new set.
See also Base.delete!
, pop
.