Scala Collections – Tuple
This topic is about Scala Collections - Tuple. Scala tuple combines a fixed number of items together so that they can be passed around as a whole. Unlike an array…
This topic is about Scala Collections - Tuple. Scala tuple combines a fixed number of items together so that they can be passed around as a whole. Unlike an array…
This topic is about Scala Collections - Queue. Queue is First In First Out, FIFO data structure and allows to insert and retrieve elements in FIFO manner. Declaring Queue Variables…
This topic is about Scala Collections - Option. Scala Option[ T ] is a container for zero or one element of a given type. An Option[T] can be either Some[T] or None object, which…
This topic is about Scala Collections - Iterator. An iterator is not a collection, but rather a way to access the elements of a collection one by one. The two…
This topic is about Scala Collections - ListMap. Scala map is a collection of key/value pairs. Any value can be retrieved based on its key. Keys are unique in the…
This topic is about Scala Collections - HashMap. Scala map is a collection of key/value pairs. Any value can be retrieved based on its key. Keys are unique in the…
This topic is about Scala Collections - Map. Scala map is a collection of key/value pairs. Any value can be retrieved based on its key. Keys are unique in the…
This topic is about Scala Collections - TreeSet. Scala Set is a collection of pairwise different elements of the same type. In other words, a Set is a collection that…
This topic is aboout Scala Collections - HashSet. Scala Set is a collection of pairwise different elements of the same type. In other words, a Set is a collection that…
This topic is about Scala Collections - BitSet. Bitset is a common base class for mutable and immutable bitsets. Bitsets are sets of non-negative integers and are represented as variable-size…