What does the map function do?
It is a high order function that applies a given function to each item in a list
What does the filter function do?
It is a high order function that produces a new list containing all items from the input list that meet a given condition
What does the fold function do?
It is a high order function that reduces a list to a single value by repeatedly applying a combining function
What is the result of head([1,2,3,4])?
1
What is the result of tail([1,2,3,4])?
[2,3,4]