Question 1
What is the use of lazy val ?
In Scala we use lazy
keyword to define a value as being lazy, meaning that it is evaluated only once, when it’s accessed.
1 |
lazy |
In Scala we use lazy
keyword to define a value as being lazy, meaning that it is evaluated only once, when it’s accessed.
1 |
lazy |
Deep learning is an area of machine learning focus on using deep (containing more than one hidden layer) artificial …
Functional programming is a style of programming where pure functions and immutable values are the basic building blocks.
Scala is a multi-paradigm programming language, it …
In this tutorial, we will go through all the steps to make your own Facebook Messenger Bot that echoes back messages it receives. We will use Scala and Akka HTTP , library to create REST API.