Lists in Scala (Immutable Containers)

Introduction

In Scala, a List is an immutable sequence of elements. Unlike Arrays, which are mutable, Lists provide a functional approach to handling collections.

Creating a List

A List can be created easily using the List keyword:

1
val listOfInt = List(3, 5, 7)

List Concatenation (:::)

To concatenate two lists, use the ::: operator:

1
2
3
4
val firstList = List(1, 2, 3)
val secondList = List(3, 5, 7)
val firstSecondCombined = firstList ::: secondList
// Result: List(1, 2, 3, 3, 5, 7)

Prepending Elements (::)

The :: operator is used to prepend a new element to the beginning of an existing list:

1
2
3
val threeFour = List("three", "four")
val twoThreeFour = "two" :: threeFour
// Result: List("two", "three", "four")

Lists vs Arrays

Feature List Array
Mutability Immutable Mutable
Usage Functional, persistent data structures Performance-efficient for indexed access
Modification Elements cannot be modified Elements can be updated

Key Takeaway

Use Lists when working with immutable collections in a functional style, and Arrays when you need mutable collections with fast indexed access.

comments powered by Disqus

Desiderata by Max Ehrmann

Go placidly amid the noise and the haste, and remember what peace there may be in silence. As far as possible without surrender be on good terms with all persons. Speak your truth quietly and clearly; and listen to others, even to the dull and the ignorant, they too have their story. Avoid loud and aggressive persons, they are vexations to the spirit.

If you compare yourself with others, you may become vain or bitter; for always there will be greater and lesser persons than yourself. Enjoy your achievements as well as your plans. Keep interested in your own career, however humble; it is a real possession in the changing fortunes of time.

Exercise caution in your business affairs, for the world is full of trickery. But let not this blind you to what virtue there is; many persons strive for high ideals, and everywhere life is full of heroism. Be yourself. Especially do not feign affection. Neither be cynical about love; for in the face of all aridity and disenchantment it is as perennial as the grass. Take kindly the counsel of the years, gracefully surrendering the things of youth.

Nurture strength of spirit to shield you in sudden misfortune. But do not distress yourself with dark imaginings. Many fears are born of fatigue and loneliness. Beyond a wholesome discipline, be gentle with yourself. You are a child of the universe, no less than the trees and the stars; you have a right to be here. And whether or not it is clear to you, no doubt the universe is unfolding as it should.

Therefore, be at peace with God, whatever you conceive Him to be. And whatever your labors and aspirations in the noisy confusion of life, keep peace in your soul. With all its sham, drudgery and broken dreams; it is still a beautiful world. Be cheerful.

Strive to be happy.

Built with Hugo
Theme Stack designed by Jimmy