A Map with no entries.
Attributes | |
clone | Source Code Obtain a clone of this object. For a mutable object, this should return a copy of the object. For an immutable object, it is acceptable to return the object itself. Refined declaration: clone |
empty | Source Code shared actual Boolean empty Determines if the iterable object is empty, that is to say, if the iterator returns no elements. Refined declaration: empty |
inverse | Source Code Returns a Refined declaration: inverse |
keys | Source Code The Refined declaration: keys |
size | Source Code The number of elements returned by the iterator of this iterable object, if the iterator terminates. In the case of an iterable whose elements are not countable, this operation never terminates. Refined declaration: size |
values | Source Code Returns all the values stored in this Refined declaration: values |
Inherited Attributes |
Attributes inherited from: Object |
Attributes inherited from: Cloneable<Clone> |
Attributes inherited from: Collection<Element> |
Attributes inherited from: Correspondence<Key,Item> |
Attributes inherited from: Iterable<Element,Absent> |
Attributes inherited from: Map<Key,Item> |
Methods | |
any | Source Code Return Refined declaration: any |
by | Source Code Produce an (0..10).by(3) results in an iterable object with the elements
Refined declaration: by |
collect | Source Code A sequence containing the results of applying the
given mapping to the elements of this container. An
eager counterpart to Refined declaration: collect |
contains | Source Code Determines if the given value belongs to this
For most Refined declaration: contains |
containsAny | Source Code Determines if any one of the given values belongs
to this Refined declaration: containsAny |
containsEvery | Source Code Determines if every one of the given values belongs
to this Refined declaration: containsEvery |
count | Source Code Return the number of elements in this Refined declaration: count |
defines | Source Code Determines if there is a value defined for the given key. Refined declaration: defines |
every | Source Code Return Refined declaration: every |
filter | Source Code An Refined declaration: filter |
find | Source Code The first element which satisfies the given
predicate, if any, or Refined declaration: find |
fold | Source Code shared actual Result fold<Result>(Result initial, Result accumulating(Result partial, Nothing->Nothing element)) The result of applying the accumulating function to each element of this container in turn. Refined declaration: fold |
get | Source Code Returns the value defined for the given key, or
Refined declaration: get |
iterator | Source Code An iterator for the elements belonging to this container. Refined declaration: iterator |
map | Source Code An Refined declaration: map |
mapItems | Source Code Returns a Refined declaration: mapItems |
select | Source Code A sequence containing the elements of this
container that satisfy the given predicate. An
eager counterpart to Refined declaration: select |
skipping | Source Code Produce an Refined declaration: skipping |
taking | Source Code Produce an Refined declaration: taking |
Inherited Methods |
Methods inherited from: Object |
Methods inherited from: Category |
Methods inherited from: Correspondence<Key,Item> |
Methods inherited from: Iterable<Element,Absent> any, by, chain, collect, count, cycle, defaultNullElements, every, filter, find, findLast, fold, following, iterator, longerThan, map, repeat, select, shorterThan, skipping, skippingWhile, sort, taking, takingWhile |
Methods inherited from: Map<Key,Item> |