Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II) | Booleans and if expressions
The usual boolean values are written with initial caps; the conditional construct is an expression, not a statement
> if 3 < 2 then "oops" else "hurray!"
"hurray!"
> (if 3 < 2 then (+) else (*)) 10 20
200
|
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II) | Booleans and if expressions
|
| Infinite lists and lazy evaluation
Haskell provides lazy evaluation for functions and data structures, so we can define infinite lists (it is prudent to avoid evaluation of a whole infinite list!)
> [1,3..]
[1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,{Interrupted!}
> take 20 [1,3..]
[1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39]
|
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II)
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II)
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II) | Booleans and if expressions
|
| Infinite lists and lazy evaluation
|
| Higher-order functions
|
| Currying
|
| The map functional
The map functional takes a function as its first argument, then applies it to every element of a list
> map (^2) [1..10]
[1,4,9,16,25,36,49,64,81,100]
> map (`div` 3) [1..20]
[0,0,1,1,1,2,2,2,3,3,3,4,4,4,5,5,5,6,6,6]
> map reverse ["hey", "there", "world"]
["yeh","ereht","dlrow"]
|
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II)
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II)
Willamette Mathematics Colloquium Fall 2002 |
A Quick Taste of Haskell (II)