February 2016
Intermediate to advanced
382 pages
8h 1m
English
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include directive."
A block of code is set as follows:
object IOAction {
def apply[T](result: => T): IOAction[T] =
new SimpleAction[T](result)
private class SimpleAction[T](result: => T) extends IOAction[T] {
override def apply(state: State): (State, T) =
(state.next, result)
}
}When we wish to draw your attention to a particular part of a code ...
Read now
Unlock full access