Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Professional Scala

You're reading from   Professional Scala Combine object-oriented and functional programming to build high-performance applications

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher
ISBN-13 9781789533835
Length 186 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Authors (2):
Arrow left icon
Ruslan Shevchenko Ruslan Shevchenko
Author Profile Icon Ruslan Shevchenko
Ruslan Shevchenko
Mads Hartmann Mads Hartmann
Author Profile Icon Mads Hartmann
Mads Hartmann
Arrow right icon
View More author details
Toc

Working with Lists

Lists are probably the most commonly used data structures in Scala programs. Learning how to work with lists is important both from a data structure standpoint but also as an entry point to designing programs around recursive data structures.

Constructing Lists

In order to be able to use l ists, one must learn how to construct them. Lists are recursive in nature, and build upon two basic building blocks: Nil (representing the empty list) and :: (pronounced cons, from the cons function of most Lisp dialects).

We will now create Lists in Scala:

  1. Start the Scala REPL, which should provide you with a prompt:
    $ scala
  2. Create a list of strings using the following:
    scala> val listOfStrings = "str1" :: ("str2" :: ("str3" :: Nil))
    listOfStrings: List[String] = List(str1, str2, str3)
  3. Show that the :: operation is the right associative by omitting the parentheses and getting the same result:
    scala> val listOfStrings = "str1" :: &quot...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at R$50/month. Cancel anytime