Collections

Members

Static functions

emptyList
List!T emptyList()
Undocumented in source. Be warned that the author may not have intended to support it.
emptyMap
Map!(K, V) emptyMap()

Returns an empty map (immutable). This map is serializable.

emptyNavigableSet
NavigableSet!(E) emptyNavigableSet()

Returns an empty navigable set (immutable). This set is serializable.

emptySet
Set!T emptySet()
Undocumented in source. Be warned that the author may not have intended to support it.
enumeration
Enumeration!T enumeration(InputRange!T range)
Undocumented in source. Be warned that the author may not have intended to support it.
enumeration
Enumeration!T enumeration(T[] range)
Undocumented in source. Be warned that the author may not have intended to support it.
singleton
Set!T singleton(T o)

Returns an immutable set containing only the specified object. The returned set is serializable.

singletonList
List!T singletonList(T o)

Returns an immutable list containing only the specified object. The returned list is serializable.

Meta