SlideShare a Scribd company logo
Functional Programming with Scala




Neelkanth Sachdeva
Consultant
Knoldus Software LLP
neelkanthsachdeva.wordpress.com
Programming Languages

  One approach to the software crisis is to introduce new
  programming languages that supports following :
→Reusability
→ Clear , Concise and High performance code.
→ Rapid prototyping
→ Reduces time and cost for development
Why Scala ?
Scala programming language

Born from the mind of Martin Odersky.
A good mix of :
  → Object orientation
  → functional programming
  → A powerful type system code
  → Eligent and powerful code then other
    languages
Scala features :
Scala attempts to blend three dichotomies of
 thought into one language. These are:

→ Functional programming and object-oriented
   programming
→ Expressive syntax and static typing
→ Advanced language features and rich Java
  integration
 Let us understand these one-by-one :-
Functional programming and object
           oriented programming
→ Functional programming is style of programming in which the basic
 method of computation is the application of functions to arguments.
→ Functional programming puts special emphasis on the “verbs” of a
 program & Object-oriented programming puts special emphasis on
 “nouns” and attaches verbs to them.
→ The two approaches are almost inverses of each other, with one
 being “top down” and the other “bottom up.”
→ Functional programming approaches software as the combination
 and application of functions.
→ It tends to decompose software into behaviors, or actions that need
 to be performed, usually in a bottom-up fashion.
Didn't understood...Have a look ?

Scenerio : “A Lion catches a deer and eats it.”

 The OOPS approach :

    class Deer
    class Lion {
         def catch(d: Deer): Unit = ...
         def eat(): Unit = ...
     }
   val lion = new Lion
   val deer = new Deer
   lion.catch(deer)
  lion.eat()
Functional programming approach

trait Lion
trait Deer
trait Catch
trait FullTummy


def catch(hunter: Lion, prey: deer): Lion with Catch
def eat(consumer: Lion with Catch): Lion with FullTummy
val story = (catch _) andThen (eat _)
story(new Lion, new Deer)
Static typing and expressiveness

The Scala type system allows expressive code.
 Scala made a few simple design decisions that help
 make it expressive:
- Changing sides of type annotation
- Type inference
- Scalable syntax
- User-defined implicits
Transparently working with the JVM

→ Seamless integration with Java and the JVM
→ Using Java libraries from Scala is seamless
  because Java idioms map directly into Scala
  idioms.
→ libraries written in Java can be imported into
 Scala as is.
Recursion

Recursion plays a larger role in pure functional
programming than in imperative programming, in part
because of the restriction that variables are immutable.
For example, you can’t have loop counters, which would
change on each pass through a loop. One way to
implement looping in a purely functional way is with
recursion.
Lets have a look :
Calculating factorials provides a good example. Here is an
imperative loop implementation.
Imperative loop implementation

def factorialWithLoop(i: BigInt): BigInt = {
     var resultantValue = BigInt(1)
     for (h <- 2 to i.intValue)
      resultantValue *= h
     resultantValue
 }


for (i <- 1 to 10)
println("factorial of " + i + " is " + factorialWithLoop(i))
Functional Approach

def factorial_Functional(i: BigInt): BigInt = i match {
     case _ if i == 1 => i
     case _ => i * factorial_Functional(i - 1)
 }


for (i <- 1 to 10)
  println("factorial of " + i + " is " + factorial_Functional(i))
How short and effective it is ..... !
Introduction to implicits

Scala provides an implicit keyword that can be used in two ways:
→ method or variable definitions
→ method parameter lists


scala> def findAnInt(implicit x : Int) = x
findAnInt: (implicit x: Int)Int


scala> findAnInt
<console>:7: error: could not find implicit value for parameter x: Int
findAnInt
^
The findAnInt method is called without specifying any
  argument list. The compiler complains that it can’t find an
  implicit value for the x parameter. We’ll provide one, as
  follows:



scala> implicit val test = 5
test: Int = 5


scala> findAnInt
res3: Int = 5
Avoid call site evaluation ?
Sometimes we want arguments not be evaluated at
 call site :
def executeMe(msgString: () => String) {
println(msgString())
}
Now calling the method like :
executeMe(() => "This" + " is" + " not"+ " looking" + "
  good!")


Not looking good...isn’t it?
How we can do this in a good way :
We can use => in a type annotation to define a by-name
 parameter.

// by-name parameter
 def iAmOk(msgString: => String) { println(msgString) }


Now calling it as :
/*
 * Using by-name Parameter
 */
 iAmOk("This" + " is" + " an" + " use"+" case"+ " by-name" + " param.")
Partial Functions :

→ Need not be defined on its whole domain

→ PartialFunction is a subtype of Function1:
   trait PartialFunction [-A, +B] extends A => B


→ Use isDefinedAt to determine whether a partial
 function is defined for a given value
 or not.
Using isDefinedAt :
object KnolXPartialFunction {
    // defined a map
    val KnolXMap = Map(1 -> "Neelkanth", 2 -> "Sachdeva")
    def main(args: Array[String]) {
        val booleanAnswer1 = KnolXMap.isDefinedAt(1)
        println("The Answer is " + booleanAnswer1)
        val booleanAnswer2 = KnolXMap.isDefinedAt(3)
        println("The Answer is " + booleanAnswer2)
    }
}
Output should be as :
The Answer is true
The Answer is false
Use a block of case alternatives to define a
  partial function literal :

scala> (’a’ to ’f’).zipWithIndex filter {
| case (_, i) => i % 2 == 0
|}

Result should be like this :

res0: ... = Vector((a,0), (c,2), (e,4))
Using the right collection

 The Scala collections library is the single most impressive
 library in the Scala ecosystem. The Scala collections provide
 many ways of storing and manipulating data, which can be
 overwhelming. Because most of the methods defined on Scala
 collections are available on every collection.
 Scala’s collections also split into three dichotomies:
→ Immutableand mutable collections
→ Eager and delayed evaluation
→ Sequential and parallel evaluation
The collection hierarchy

Traversable : The Traversable trait is defined in terms of the
  foreach method.This method is an internal iterator---that is, the
  foreach method takes a function that operates on a single
  element of the collection and applies it to every element of the
  collection. Travers-able collections don’t provide any way to
  stop traversing inside the foreach.
Iterable : The Iterable trait is defined in terms of the iterator
  method. This returns an external iterator that you can use to
  walk through the items in the collection.
scala> val names = Iterable("Josh", "Jim")
names: Iterable[java.lang.String] = List(Josh, Jim)
Seq : The Seq trait is defined in terms of the length
 and apply method. It represents collections that
 have a sequential ordering. We can use the
 apply method to index into the collection by its
 ordering. The length methodreturns the size of
 the collection.
scala> val x = Seq(2,1,30,-2,20,1,2,0)
x: Seq[Int] = List(2, 1, 30, -2, 20, 1, 2, 0)
scala> x.tails map (_.take(2)) filter (_.length > 1)
  map (_.sum) toList
res0: List[Int] = List(3, 31, 28, 18, 21, 3, 2)
LinearSeq: The LinearSeq trait is used to denote that a
  collection can be split into a head and tail component.
IndexedSeq: The IndexedSeq trait is similar to the Seq trait
  except that it implies that random access of collection
  elements is efficient that is, accessing elements of a
  collectionshould be constant or near constant.
scala> val x = IndexedSeq(1, 2, 3)
x: IndexedSeq[Int] = Vector(1, 2, 3)
scala> x.updated(1, 5)
res0: IndexedSeq[Int] = Vector(1, 5, 3)


Set
Map
Some special & powerful collection methods:


→ sliding : Groups elements in fixed size blocks by passing a
  ”sliding window” over them .


→ Curried methods : A method can have more than one
 parameter list, which is called currying2 .



→ foldLeft : foldLeft transforms a collection into a single value.
Using sliding method :
object KnolXSliding {
def KnolXSlide = {
        1 to 6 sliding 4 foreach println
    }
    def main(args: Array[String]) {
        // Call the sliding method
        KnolXSlide
        }
}
Output should be :
Vector(1, 2, 3, 4)
Vector(2, 3, 4, 5)
Vector(3, 4, 5, 6)
Using Curried methods :

object KnolXCurried {
    // Passing more then one parameters
    def KnolXadd(a: Int)(b: Int)(c: String) =
println("The Tota Sum is "+ (a + b) + " " + c)
    def main(args: Array[String]) {
        KnolXadd(2)(9)("Wowwwwwww !")
    }
}
Output should be :
The Total Sum is 11 Wowwwwwww !
Using foldLeft method :

object KnolXfoldLeft {
    def main(args: Array[String]) {
        val addAll = Seq(1, 2, 3).foldLeft(0)(_ + _)
        println("Sum is"+addAll)
    }
}
Output should be :
Sum is 6
Let us have a feel of some XML as well

          Introduction to


       Working with XML
Semi-structured data

→ XML is a form of semi-structured data.
→ It is more structured than plain strings, because it
 organizes the contents of the data into a tree
→ Semi-structured data is very helpful any time you need to
 serialize program data for saving in a file or shipping
 across a network.
→ XML is the most widely used on the Internet. There are
 XML tools on most operating systems, and most
 programming languages have XML libraries available
XML overview

// Illegal XML
One <pod>, two <pod>, three <pod> zoo
// Also illegal
<pod>Three <peas> in the </pod></peas>


//Ok
<pod>Three <peas></peas> in the </pod>
Scala lets you type in XML as a literal anywhere that an expression is valid :


scala> <a>
This is some XML.
Here is a tag: <atag/>
</a>
res0: scala.xml.Elem =
<a>
This is some XML.
Here is a tag: <atag></atag>
</a>


scala> <a> {"hello"+", world"} </a>
res1: scala.xml.Elem = <a> hello, world </a>
Can we Try Something ?

scala> val yearMade = 1955
yearMade: Int = 1955
scala>
<a> { if (yearMade < 2000) <old>{yearMade}</old>
else xml.NodeSeq.Empty }
</a>
res2: scala.xml.Elem =
<a> <old>1955</old>
</a>
Thank You

More Related Content

What's hot (20)

PPTX
Java 8 Lambda Expressions
Hyderabad Scalability Meetup
 
ODP
Functors, Applicatives and Monads In Scala
Knoldus Inc.
 
PPTX
Namespace in C++ Programming Language
Himanshu Choudhary
 
PPTX
Java 8 - Features Overview
Sergii Stets
 
PDF
Java8
Felipe Mamud
 
PDF
Java8 features
Elias Hasnat
 
PDF
Java 8: the good parts!
Andrzej Grzesik
 
PPTX
Java 8 lambda
Manav Prasad
 
PDF
Scala test
Inphina Technologies
 
PPTX
Java 8 presentation
Van Huong
 
PDF
Procedure Typing for Scala
akuklev
 
PDF
Java lab-manual
Khurshid Asghar
 
PDF
Java 8 features
NexThoughts Technologies
 
PDF
Java programming-examples
Mumbai Academisc
 
PPTX
Java 8 streams
Manav Prasad
 
PDF
Scala categorytheory
Knoldus Inc.
 
PDF
Programming in Scala: Notes
Roberto Casadei
 
PPT
Major Java 8 features
Sanjoy Kumar Roy
 
PPT
Core java by a introduction sandesh sharma
Sandesh Sharma
 
PDF
Programming in Scala - Lecture Four
Angelo Corsaro
 
Java 8 Lambda Expressions
Hyderabad Scalability Meetup
 
Functors, Applicatives and Monads In Scala
Knoldus Inc.
 
Namespace in C++ Programming Language
Himanshu Choudhary
 
Java 8 - Features Overview
Sergii Stets
 
Java8 features
Elias Hasnat
 
Java 8: the good parts!
Andrzej Grzesik
 
Java 8 lambda
Manav Prasad
 
Java 8 presentation
Van Huong
 
Procedure Typing for Scala
akuklev
 
Java lab-manual
Khurshid Asghar
 
Java 8 features
NexThoughts Technologies
 
Java programming-examples
Mumbai Academisc
 
Java 8 streams
Manav Prasad
 
Scala categorytheory
Knoldus Inc.
 
Programming in Scala: Notes
Roberto Casadei
 
Major Java 8 features
Sanjoy Kumar Roy
 
Core java by a introduction sandesh sharma
Sandesh Sharma
 
Programming in Scala - Lecture Four
Angelo Corsaro
 

Similar to Functional programming with Scala (20)

PPTX
Taxonomy of Scala
shinolajla
 
PPTX
Scala Intro
Alexey (Mr_Mig) Migutsky
 
PDF
Meet scala
Wojciech Pituła
 
ODP
Scala ntnu
Alf Kristian Støyle
 
PDF
Learning Functional Programming Without Growing a Neckbeard
Kelsey Gilmore-Innis
 
PDF
Programming in scala - 1
Mukesh Kumar
 
PDF
Functional programming in Scala
datamantra
 
PPTX
Principles of functional progrmming in scala
ehsoon
 
PPT
Scala collection
Knoldus Inc.
 
PPTX
Scala for curious
Tim (dev-tim) Zadorozhniy
 
PPTX
Scala Introduction
Constantine Nosovsky
 
PDF
Getting Started With Scala
Meetu Maltiar
 
PDF
Scala - core features
Łukasz Wójcik
 
PDF
Scala: Object-Oriented Meets Functional, by Iulian Dragos
3Pillar Global
 
PDF
From Java to Scala - advantages and possible risks
SeniorDevOnly
 
PDF
Introduction To Scala
Innar Made
 
ODP
Introducing scala
Meetu Maltiar
 
PDF
Scala Quick Introduction
Damian Jureczko
 
PPTX
Scala, Play 2.0 & Cloud Foundry
Pray Desai
 
PDF
Scala Bootcamp 1
Knoldus Inc.
 
Taxonomy of Scala
shinolajla
 
Meet scala
Wojciech Pituła
 
Learning Functional Programming Without Growing a Neckbeard
Kelsey Gilmore-Innis
 
Programming in scala - 1
Mukesh Kumar
 
Functional programming in Scala
datamantra
 
Principles of functional progrmming in scala
ehsoon
 
Scala collection
Knoldus Inc.
 
Scala for curious
Tim (dev-tim) Zadorozhniy
 
Scala Introduction
Constantine Nosovsky
 
Getting Started With Scala
Meetu Maltiar
 
Scala - core features
Łukasz Wójcik
 
Scala: Object-Oriented Meets Functional, by Iulian Dragos
3Pillar Global
 
From Java to Scala - advantages and possible risks
SeniorDevOnly
 
Introduction To Scala
Innar Made
 
Introducing scala
Meetu Maltiar
 
Scala Quick Introduction
Damian Jureczko
 
Scala, Play 2.0 & Cloud Foundry
Pray Desai
 
Scala Bootcamp 1
Knoldus Inc.
 
Ad

Recently uploaded (20)

PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Python basic programing language for automation
DanialHabibi2
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
The Builder’s Playbook - 2025 State of AI Report.pdf
jeroen339954
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Python basic programing language for automation
DanialHabibi2
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
Ad

Functional programming with Scala

  • 1. Functional Programming with Scala Neelkanth Sachdeva Consultant Knoldus Software LLP neelkanthsachdeva.wordpress.com
  • 2. Programming Languages One approach to the software crisis is to introduce new programming languages that supports following : →Reusability → Clear , Concise and High performance code. → Rapid prototyping → Reduces time and cost for development
  • 4. Scala programming language Born from the mind of Martin Odersky. A good mix of : → Object orientation → functional programming → A powerful type system code → Eligent and powerful code then other languages
  • 6. Scala attempts to blend three dichotomies of thought into one language. These are: → Functional programming and object-oriented programming → Expressive syntax and static typing → Advanced language features and rich Java integration Let us understand these one-by-one :-
  • 7. Functional programming and object oriented programming → Functional programming is style of programming in which the basic method of computation is the application of functions to arguments. → Functional programming puts special emphasis on the “verbs” of a program & Object-oriented programming puts special emphasis on “nouns” and attaches verbs to them. → The two approaches are almost inverses of each other, with one being “top down” and the other “bottom up.” → Functional programming approaches software as the combination and application of functions. → It tends to decompose software into behaviors, or actions that need to be performed, usually in a bottom-up fashion.
  • 8. Didn't understood...Have a look ? Scenerio : “A Lion catches a deer and eats it.” The OOPS approach : class Deer class Lion { def catch(d: Deer): Unit = ... def eat(): Unit = ... } val lion = new Lion val deer = new Deer lion.catch(deer) lion.eat()
  • 9. Functional programming approach trait Lion trait Deer trait Catch trait FullTummy def catch(hunter: Lion, prey: deer): Lion with Catch def eat(consumer: Lion with Catch): Lion with FullTummy val story = (catch _) andThen (eat _) story(new Lion, new Deer)
  • 10. Static typing and expressiveness The Scala type system allows expressive code. Scala made a few simple design decisions that help make it expressive: - Changing sides of type annotation - Type inference - Scalable syntax - User-defined implicits
  • 11. Transparently working with the JVM → Seamless integration with Java and the JVM → Using Java libraries from Scala is seamless because Java idioms map directly into Scala idioms. → libraries written in Java can be imported into Scala as is.
  • 12. Recursion Recursion plays a larger role in pure functional programming than in imperative programming, in part because of the restriction that variables are immutable. For example, you can’t have loop counters, which would change on each pass through a loop. One way to implement looping in a purely functional way is with recursion. Lets have a look : Calculating factorials provides a good example. Here is an imperative loop implementation.
  • 13. Imperative loop implementation def factorialWithLoop(i: BigInt): BigInt = { var resultantValue = BigInt(1) for (h <- 2 to i.intValue) resultantValue *= h resultantValue } for (i <- 1 to 10) println("factorial of " + i + " is " + factorialWithLoop(i))
  • 14. Functional Approach def factorial_Functional(i: BigInt): BigInt = i match { case _ if i == 1 => i case _ => i * factorial_Functional(i - 1) } for (i <- 1 to 10) println("factorial of " + i + " is " + factorial_Functional(i)) How short and effective it is ..... !
  • 15. Introduction to implicits Scala provides an implicit keyword that can be used in two ways: → method or variable definitions → method parameter lists scala> def findAnInt(implicit x : Int) = x findAnInt: (implicit x: Int)Int scala> findAnInt <console>:7: error: could not find implicit value for parameter x: Int findAnInt ^
  • 16. The findAnInt method is called without specifying any argument list. The compiler complains that it can’t find an implicit value for the x parameter. We’ll provide one, as follows: scala> implicit val test = 5 test: Int = 5 scala> findAnInt res3: Int = 5
  • 17. Avoid call site evaluation ? Sometimes we want arguments not be evaluated at call site : def executeMe(msgString: () => String) { println(msgString()) } Now calling the method like : executeMe(() => "This" + " is" + " not"+ " looking" + " good!") Not looking good...isn’t it?
  • 18. How we can do this in a good way : We can use => in a type annotation to define a by-name parameter. // by-name parameter def iAmOk(msgString: => String) { println(msgString) } Now calling it as : /* * Using by-name Parameter */ iAmOk("This" + " is" + " an" + " use"+" case"+ " by-name" + " param.")
  • 19. Partial Functions : → Need not be defined on its whole domain → PartialFunction is a subtype of Function1: trait PartialFunction [-A, +B] extends A => B → Use isDefinedAt to determine whether a partial function is defined for a given value or not.
  • 20. Using isDefinedAt : object KnolXPartialFunction { // defined a map val KnolXMap = Map(1 -> "Neelkanth", 2 -> "Sachdeva") def main(args: Array[String]) { val booleanAnswer1 = KnolXMap.isDefinedAt(1) println("The Answer is " + booleanAnswer1) val booleanAnswer2 = KnolXMap.isDefinedAt(3) println("The Answer is " + booleanAnswer2) } } Output should be as : The Answer is true The Answer is false
  • 21. Use a block of case alternatives to define a partial function literal : scala> (’a’ to ’f’).zipWithIndex filter { | case (_, i) => i % 2 == 0 |} Result should be like this : res0: ... = Vector((a,0), (c,2), (e,4))
  • 22. Using the right collection The Scala collections library is the single most impressive library in the Scala ecosystem. The Scala collections provide many ways of storing and manipulating data, which can be overwhelming. Because most of the methods defined on Scala collections are available on every collection. Scala’s collections also split into three dichotomies: → Immutableand mutable collections → Eager and delayed evaluation → Sequential and parallel evaluation
  • 23. The collection hierarchy Traversable : The Traversable trait is defined in terms of the foreach method.This method is an internal iterator---that is, the foreach method takes a function that operates on a single element of the collection and applies it to every element of the collection. Travers-able collections don’t provide any way to stop traversing inside the foreach. Iterable : The Iterable trait is defined in terms of the iterator method. This returns an external iterator that you can use to walk through the items in the collection. scala> val names = Iterable("Josh", "Jim") names: Iterable[java.lang.String] = List(Josh, Jim)
  • 24. Seq : The Seq trait is defined in terms of the length and apply method. It represents collections that have a sequential ordering. We can use the apply method to index into the collection by its ordering. The length methodreturns the size of the collection. scala> val x = Seq(2,1,30,-2,20,1,2,0) x: Seq[Int] = List(2, 1, 30, -2, 20, 1, 2, 0) scala> x.tails map (_.take(2)) filter (_.length > 1) map (_.sum) toList res0: List[Int] = List(3, 31, 28, 18, 21, 3, 2)
  • 25. LinearSeq: The LinearSeq trait is used to denote that a collection can be split into a head and tail component. IndexedSeq: The IndexedSeq trait is similar to the Seq trait except that it implies that random access of collection elements is efficient that is, accessing elements of a collectionshould be constant or near constant. scala> val x = IndexedSeq(1, 2, 3) x: IndexedSeq[Int] = Vector(1, 2, 3) scala> x.updated(1, 5) res0: IndexedSeq[Int] = Vector(1, 5, 3) Set Map
  • 26. Some special & powerful collection methods: → sliding : Groups elements in fixed size blocks by passing a ”sliding window” over them . → Curried methods : A method can have more than one parameter list, which is called currying2 . → foldLeft : foldLeft transforms a collection into a single value.
  • 27. Using sliding method : object KnolXSliding { def KnolXSlide = { 1 to 6 sliding 4 foreach println } def main(args: Array[String]) { // Call the sliding method KnolXSlide } } Output should be : Vector(1, 2, 3, 4) Vector(2, 3, 4, 5) Vector(3, 4, 5, 6)
  • 28. Using Curried methods : object KnolXCurried { // Passing more then one parameters def KnolXadd(a: Int)(b: Int)(c: String) = println("The Tota Sum is "+ (a + b) + " " + c) def main(args: Array[String]) { KnolXadd(2)(9)("Wowwwwwww !") } } Output should be : The Total Sum is 11 Wowwwwwww !
  • 29. Using foldLeft method : object KnolXfoldLeft { def main(args: Array[String]) { val addAll = Seq(1, 2, 3).foldLeft(0)(_ + _) println("Sum is"+addAll) } } Output should be : Sum is 6
  • 30. Let us have a feel of some XML as well Introduction to Working with XML
  • 31. Semi-structured data → XML is a form of semi-structured data. → It is more structured than plain strings, because it organizes the contents of the data into a tree → Semi-structured data is very helpful any time you need to serialize program data for saving in a file or shipping across a network. → XML is the most widely used on the Internet. There are XML tools on most operating systems, and most programming languages have XML libraries available
  • 32. XML overview // Illegal XML One <pod>, two <pod>, three <pod> zoo // Also illegal <pod>Three <peas> in the </pod></peas> //Ok <pod>Three <peas></peas> in the </pod>
  • 33. Scala lets you type in XML as a literal anywhere that an expression is valid : scala> <a> This is some XML. Here is a tag: <atag/> </a> res0: scala.xml.Elem = <a> This is some XML. Here is a tag: <atag></atag> </a> scala> <a> {"hello"+", world"} </a> res1: scala.xml.Elem = <a> hello, world </a>
  • 34. Can we Try Something ? scala> val yearMade = 1955 yearMade: Int = 1955 scala> <a> { if (yearMade < 2000) <old>{yearMade}</old> else xml.NodeSeq.Empty } </a> res2: scala.xml.Elem = <a> <old>1955</old> </a>