0 PROGRAMMING IN HASKELL Typeclasses and higher order functions Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and.

Slides:



Advertisements
Similar presentations
Haskell Chapter 5, Part I. Topics  Higher Order Functions  map, filter  Infinite lists Get out a piece of paper… we’ll be doing lots of tracing.
Advertisements

Using Types Slides thanks to Mark Jones. 2 Expressions Have Types: The type of an expression tells you what kind of value you might expect to see if you.
0 PROGRAMMING IN HASKELL Chapter 5 - List Comprehensions.
0 PROGRAMMING IN HASKELL Chapter 4 - Defining Functions.
Advanced Programming Handout 9 Qualified Types (SOE Chapter 12)
0 PROGRAMMING IN HASKELL Chapter 6 - Recursive Functions Most of this should be review for you.
0 PROGRAMMING IN HASKELL Chapter 6 - Recursive Functions.
0 PROGRAMMING IN HASKELL Chapter 3 - Types and Classes.
Chapter 12 Qualified Types. Motivation  What should the principal type of (+) be? Int -> Int -> Int-- too specific a -> a -> a-- too general  It seems.
Cse536 Functional Programming 1 7/14/2015 Lecture #2, Sept 29, 2004 Reading Assignments –Begin Chapter 2 of the Text Home work #1 can be found on the webpage,
Haskell Chapter 1, Part II. List Comprehension  List comprehensions are a way to filter, transform and combine lists  Similar to mathematical set comprehensions.
Functional Programming in Haskell Motivation through Concrete Examples Adapted from Lectures by Simon Thompson.
PrasadCS7761 Haskell Data Types/ADT/Modules Type/Class Hierarchy Lazy Functional Language.
0 PROGRAMMING IN HASKELL Chapter 5 – Introduction, The Hugs System, Types and Classes.
Haskell. 2 GHC and HUGS Haskell 98 is the current version of Haskell GHC (Glasgow Haskell Compiler, version 7.4.1) is the version of Haskell I am using.
0 REVIEW OF HASKELL A lightening tour in 45 minutes.
0 PROGRAMMING IN HASKELL Chapter 7 - Defining Functions, List Comprehensions.
0 PROGRAMMING IN HASKELL Some first steps Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and a few other sources)
1-Nov-15 Haskell II Functions and patterns. Data Types Int + - * / ^ even odd Float + - * / ^ sin cos pi truncate Char ord chr isSpace isUpper … Bool.
Overview of the Haskell 98 Programming Language
What is a Type? A type is a name for a collection of related values. For example, in Haskell the basic type Bool contains the two logical values: True.
0 Odds and Ends in Haskell: Folding, I/O, and Functors Adapted from material by Miran Lipovaca.
0 INTRODUCTION TO FUNCTIONAL PROGRAMMING Graham Hutton University of Nottingham.
Lee CSCE 314 TAMU 1 CSCE 314 Programming Languages Haskell: More on Functions and List Comprehensions Dr. Hyunyoung Lee.
0 PROGRAMMING IN HASKELL Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and a few other sources) Odds and Ends,
Recursion Higher Order Functions CSCE 314 Spring 2016.
Haskell Chapter 4. Recursion  Like other languages  Base case  Recursive call  Author programs a number of built-in functions as examples.
Haskell Chapter 5, Part II. Topics  Review/More Higher Order Functions  Lambda functions  Folds.
Haskell. GHC and HUGS Haskell 98 is the current version of Haskell GHC (Glasgow Haskell Compiler, version 7.4.1) is the version of Haskell I am using.
Lecture 16: Advanced Topic: Functional Programming CS5363 Compiler and Programming Languages.
1 PROGRAMMING IN HASKELL Lecture 2 Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and a few other sources)
1 PROGRAMMING IN HASKELL An Introduction Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and a few other sources)
0 PROGRAMMING IN HASKELL Typeclasses and higher order functions Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and.
6-Jul-16 Haskell II Functions and patterns. Data Types Int + - * / ^ even odd Float + - * / ^ sin cos pi truncate Char ord chr isSpace isUpper … Bool.
© M. Winter COSC 4P41 – Functional Programming Some functions id :: a -> a id x = x const :: a -> b -> a const k _ = k ($) :: (a -> b) -> a -> b.
Lecture 14: Advanced Topic: Functional Programming
Set Comprehensions In mathematics, the comprehension notation can be used to construct new sets from old sets. {x2 | x  {1...5}} The set {1,4,9,16,25}
Set Comprehensions In mathematics, the comprehension notation can be used to construct new sets from old sets. {x2 | x  {1...5}} The set {1,4,9,16,25}
Polymorphic Functions
Functional Programming
Recursion.
PROGRAMMING IN HASKELL
Types CSCE 314 Spring 2016.
Haskell Chapter 2.
PROGRAMMING IN HASKELL
Haskell Chapter 1, Part II.
Functions and patterns
A lightening tour in 45 minutes
PROGRAMMING IN HASKELL
Haskell.
CSE 3302 Programming Languages
PROGRAMMING IN HASKELL
PROGRAMMING IN HASKELL
Higher Order Functions
PROGRAMMING IN HASKELL
Type & Typeclass Syntax in function
Types and Classes in Haskell
CSCE 314: Programming Languages Dr. Dylan Shell
Haskell Types, Classes, and Functions, Currying, and Polymorphism
PROGRAMMING IN HASKELL
Fundamentals of Functional Programming
Records and Type Classes
Functions and patterns
PROGRAMMING IN HASKELL
Functions and patterns
PROGRAMMING IN HASKELL
PROGRAMMING IN HASKELL
PROGRAMMING IN HASKELL
Records and Type Classes
Presentation transcript:

0 PROGRAMMING IN HASKELL Typeclasses and higher order functions Based on lecture notes by Graham Hutton The book “Learn You a Haskell for Great Good” (and a few other sources)

1 As already discussed, Haskell has extraordinary range capability on lists: ghci> [1..15] [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15] ghci> ['a'..'z'] "abcdefghijklmnopqrstuvwxyz" ghci> ['K'..'Z'] "KLMNOPQRSTUVWXYZ” ghci> [2,4..20] [2,4,6,8,10,12,14,16,18,20] ghci> [3,6..20] [3,6,9,12,15,18] Ranges in Haskell

2 But be careful: ghci> [0.1, ] [0.1,0.3,0.5,0.7, , ] Ranges in Haskell (I’d recommend just avoiding floating point in any range expression in a list – imprecision is just too hard to predict.)

3 Can be very handy – these are equivalent: [13,26..24*13] take 24 [13,26..] Infinite Lists A few useful infinite list functions: ghci> take 10 (cycle [1,2,3]) [1,2,3,1,2,3,1,2,3,1] ghci> take 12 (cycle "LOL ") "LOL LOL LOL " ghci> take 10 (repeat 5) [5,5,5,5,5,5,5,5,5,5]

4 Very similar to standard set theory list notation: ghci> [x*2 | x <- [1..10]] [2,4,6,8,10,12,14,16,18,20] List Comprehensions Can even add predicates to the comprehension: ghci> [x*2 | x = 12] [12,14,16,18,20] ghci> [ x | x <- [ ], x `mod` 7 == 3] [52,59,66,73,80,87,94]

5 Can even combine lists: ghci> let nouns = ["hobo","frog","pope"] ghci> let adjectives = ["lazy","grouchy","scheming"] ghci> [adjective ++ " " ++ noun | adjective <- adjectives, noun <- nouns] ["lazy hobo","lazy frog","lazy pope","grouchy hobo","grouchy frog", "grouchy pope","scheming hobo","scheming frog","scheming pope"] List Comprehensions

6 Write a function called myodds that takes a list and filters out just the odds using a list comprehension. Then test it by giving it an infinite list, but then only “taking” the first 12 elements. Note: Your code will start with something like: myodds xs = [ put your code here ] Exercise

7 We’ve seen types already: ghci> :t 'a' 'a' :: Char ghci> :t True True :: Bool ghci> :t "HELLO!" "HELLO!" :: [Char] ghci> :t (True, 'a') (True, 'a') :: (Bool, Char) ghci> :t 4 == 5 4 == 5 :: Bool Type Classes

8 It’s good practice (and REQUIRED in this class) to also give functions types in your definitions. removeNonUppercase :: [Char] -> [Char] removeNonUppercase st = [ c | c <- st, c `elem` ['A'..'Z']] addThree :: Int -> Int -> Int -> Int addThree x y z = x + y + z Type of functions

9 In a typeclass, we group types by what behaviors are supported. (These are NOT object oriented classes – closer to Java interfaces.) Example: ghci> :t (==) (==) :: (Eq a) => a -> a -> Bool Type Classes Everything before the => is called a type constraint, so the two inputs must be of a type that is a member of the Eq class.

10 Other useful typeclasses: Ord is anything that has an ordering. Show are things that can be presented as strings. Enum is anything that can be sequentially ordered. Bounded means has a lower and upper bound. Num is a numeric typeclass – so things have to “act” like numbers. Integral and Floating what they seem. Type Classes

11 In Haskell, every function officially only takes 1 parameter (which means we’ve been doing something funny so far). ghci> max ghci> (max 4) 5 5 ghci> :type max max :: Ord a => a -> a -> a Curried Functions Note: same as max :: (Ord a) => a -> (a -> a)

12 Currying Conventions  The arrow  associates to the right. Int  Int  Int  Int To avoid excess parentheses when using curried functions, two simple conventions are adopted: Means Int  (Int  (Int  Int)).

13 zAs a consequence, it is then natural for function application to associate to the left. mult x y z Means ((mult x) y) z. Unless tupling is explicitly required, all functions in Haskell are normally defined in curried form.

14 Polymorphic Functions A function is called polymorphic (“of many forms”) if its type contains one or more type variables. length :: [a]  Int for any type a, length takes a list of values of type a and returns an integer.

15 zType variables can be instantiated to different types in different circumstances: Note: zType variables must begin with a lower-case letter, and are usually named a, b, c, etc. > length [False,True] 2 > length [1,2,3,4] 4 a = Bool a = Int

16 zMany of the functions defined in the standard prelude are polymorphic. For example: fst :: (a,b)  a head :: [a]  a take :: Int  [a]  [a] zip :: [a]  [b]  [(a,b)] id :: a  a

17 Overloaded Functions A polymorphic function is called overloaded if its type contains one or more class constraints. sum :: Num a  [a]  a for any numeric type a, sum takes a list of values of type a and returns a value of type a.

18 zConstrained type variables can be instantiated to any types that satisfy the constraints: Note: > sum [1,2,3] 6 > sum [1.1,2.2,3.3] 6.6 > sum [’a’,’b’,’c’] ERROR Char is not a numeric type a = Int a = Float

19 Hints and Tips zWhen defining a new function in Haskell, it is useful to begin by writing down its type; zWithin a script, it is good practice to state the type of every new function defined; zWhen stating the types of polymorphic functions that use numbers, equality or orderings, take care to include the necessary class constraints.

20 second xs = head (tail xs) swap (x,y) = (y,x) pair x y = (x,y) double x = x*2 palindrome xs = reverse xs == xs twice f x = f (f x) What are the types of the following functions? Exercise

21 applyTwice :: (a -> a) -> a -> a applyTwice f x = f (f x) Remember that functions can also be inputs: Higher order functions After loading, we can use this with any function: ghci> applyTwice (+3) ghci> applyTwice (++ " HAHA") "HEY" "HEY HAHA HAHA" ghci> applyTwice ("HAHA " ++) "HEY" "HAHA HAHA HEY" ghci> applyTwice (3:) [1] [3,3,1]

22 zipWith :: (a -> b -> c) -> [a] -> [b] -> [c] zipWith _ [] _ = [] zipWith _ _ [] = [] zipWith f (x:xs) (y:ys) = f x y : zipWith' f xs ys zipWith is a default in the prelude, but if we were coding it, it would look like this: Useful functions: zipwith Look at declaration for a bit…

23 ghci> zipWith (+) [4,2,5,6] [2,6,2,3] [6,8,7,9] ghci> zipWith max [6,3,2,1] [7,3,1,5] [7,3,2,5] ghci> zipWith (++) ["foo ", "bar ", "baz "] ["fighters", "hoppers", "aldrin"] ["foo fighters","bar hoppers","baz aldrin"] ghci> zipWith' (*) (replicate 5 2) [1..] [2,4,6,8,10] ghci> zipWith' (zipWith' (*)) [[1,2,3],[3,5,6],[2,3,4]] [[3,2,2],[3,4,5],[5,4,3]] [[3,4,6],[9,20,30],[10,12,12]] Using zipWith: Useful functions: zipwith

24 flip :: (a -> b -> c) -> (b -> a -> c) flip f = g where g x y = f y x The function “flip” just flips order of inputs to a function: Useful functions: flip ghci> flip' zip [1,2,3,4,5] "hello" [('h',1),('e',2),('l',3),('l',4),('o',5)] ghci> zipWith (flip' div) [2,2..] [10,8,6,4,2] [5,4,3,2,1]

25 map :: (a -> b) -> [a] -> [b] map _ [] = [] map f (x:xs) = f x : map f xs The function map applies a function across a list: Useful functions: map ghci> map (+3) [1,5,3,1,6] [4,8,6,4,9] ghci> map (++ "!") ["BIFF", "BANG", "POW"] ["BIFF!","BANG!","POW!"] ghci> map (replicate 3) [3..6] [[3,3,3],[4,4,4],[5,5,5],[6,6,6]] ghci> map (map (^2)) [[1,2],[3,4,5,6],[7,8]] [[1,4],[9,16,25,36],[49,64]]

26 filter :: (a -> Bool) -> [a] -> [a] filter _ [] = [] filter p (x:xs) | p x = x : filter p xs | otherwise = filter p xs The function fliter: Useful functions: filter ghci> filter (>3) [1,5,3,2,1,6,4,3,2,1] [5,6,4] ghci> filter (==3) [1,2,3,4,5] [3] ghci> filter even [1..10] [2,4,6,8,10]

27 quicksort :: (Ord a) => [a] -> [a] quicksort [] = [] quicksort (x:xs) = let smallerSorted = quicksort (filter (<=x) xs) biggerSorted = quicksort (filter (>x) xs) in smallerSorted ++ [x] ++ biggerSorted Using filter: quicksort! (Also using let clause, which temporarily binds a function in the local context. The function actually evaluates to whatever “in” is.)