Scala Collection Scala provides rich set of collection library. It contains classes and traits to collect data. These collections can be mutable…
Scala Tutorial
-
-
Scala List List is used to store ordered elements. It extends LinearSeq trait. It is a class for immutable linked lists. This…
-
Scala String Methods Scala String equals() Method Example You can also use equal() method to compare two string objects. It returns true…
-
Simple Program of Scala In this tutorial, you will learn how to write scala programs. To write scala program you need to…
-
Scala Comments The scala comments are statements which are not executed by the compiler or interpreter. The comments can be used to…
-
Scala ListMap This class implements immutable maps by using a list-based data structure. It maintains insertion order and returns ListMap. This collection…
-
Scala String In scala, string is a combination of characters or we can say it is a sequence of characters. It is…
-
Akka Tutorial Akka tutorial provides basic and advanced concepts of Akka. Our Akka tutorial is designed for beginners and professionals. Akka is…
-
Scala Conditional Expressions Scala provides if statement to test the conditional expressions. It tests boolean conditional expression which can be either true…
-
Scala ListSet In scala, ListSet class implements immutable sets using a list-based data structure. Elements are stored internally in reversed insertion order,…