layout | title | permalink |
---|---|---|
default |
Functions |
/outline/functions.html |
{::options parse_block_html="true" /}
{% comment %}
http://clojurebridge.github.io/curriculum/outline/functions.html
{% endcomment %}
- What are functions?
- Naming functions
- [bonus section] Functions that take other functions
map
andreduce
- [bonus section] Anonymous function
- [bonus section] Assignment:
let
You have already seen some functions, such as
count
,conj
,first
, andrest
. All the arithmetic we did used functions, as well:+
,-
,*
, and/
. What does it mean to be a function, though? {: ng-show="block11" .description}
A function is an independent, discrete piece of code that takes in some values (called arguments) and returns a value. {: ng-show="block11" .description}
Reference: Basics of Function {: ng-show="block11" .description}
count
,conj
,first
+
,-
,*
,/
- A piece of code that takes values and returns a value
defn
specifies that we are defining a function.forward-right
is the name of this function.- The string on the next line is the documentation for the function, which explains what the function does. This is optional.
[turtle]
is the list of arguments. Here, we have one argument calledturtle
.(forward turtle 60) (right turtle 135)
is the body of the function. This is what executes when we use the function. {: ng-show="block21" .description}
(defn forward-right
"Moves specified turtle forward and tilts its head"
[turtle]
(forward turtle 60)
(right turtle 135))
To use
forward-right
, we call the function, just like we've done with all the functions we've already used. {: ng-show="block31" .description}
(forward-right :trinity) ;=> {:trinity {:angle 135}}
(forward-right :neo) ;=> {:neo {:angle 135}}
Functions can also take more than one argument. Let's make a
forward-right-with-len
function that takes a forward length, in addition to the turtle. {: ng-show="block41" .description}
(defn forward-right-with-len
"Given turtle and length, forward the turtle and tilts its head"
[turtle len]
(forward turtle len)
(right turtle 135))
(forward-right-with-len :trinity 90) ;=> {:trinity {:angle 135}}
(forward-right-with-len :neo 80) ;=> {:neo {:angle 135}}
- Write a function
- Go to
walk.clj
- On the editor, write
forward-right
function (below) which appeared in the slide. - (Optional) Save
walk.clj
- Select whole
forward-right
function and hit Eval Selection
- Use a function
- Type
(forward-right :trinity)
on right REPL pane - Repeat above at least 8 times (use up arrow and hit enter)
(defn forward-right
"Moves specified turtle forward and tilts its head"
[turtle]
(forward turtle 60)
(right turtle 135))
- Go to
walk.clj
- On the editor, write
forward-right-with-len-ang
functon that takes three arguments, turtle, len, and angle (extension offorward-right-with-len
) - Select entire
forward-right-with-len-ang
function and hit Reload Selection - On the REPL pane, type
(forward-right-with-len-ang :trinity 60 120)
- Repeat above, evaluating the function on REPL, many times
Function names are symbols, just like the symbols we used with
def
when assigning names to values. {: ng-show="block61" .description}
Symbols have to begin with a non-numeric character, and they can contain alphanumeric characters, along with *, +, !, -, _, and ?. This flexibility is important with functions, as there are certain idioms we use. {: ng-show="block61" .description}
Clojure has two type of functions:
- function that returns a value,
- function that returns true or false. The second type is called predicates. {: ng-show="block62" .description}
In Clojure,
=
is a predicate function, which may be a surprising fact. Other than that, like many other computer languages, Clojure has predicate functions to test greater than, less than or such. Mostly predicate functions end with?
. {: ng-show="block63" .description}
=
,not=
>
,<
,>=
,<=
true?
,false?
,empty?
,nil?
,vector?
,map?
{: .slide_title .slide}
Some of the most powerful functions you can use with collections can take other functions as arguments. This is one of the most magical things about Clojure--and many other programming languages. That's a complicated idea, also, may not make sense at first. Let's look at an example and learn more about that. {: ng-show="block71" .description}
Reference: Higher-order Function {: ng-show="block71" .description}
map
is a function that takes another function, along with a collection. It calls the function provided to it on each member of the collection, then returns a new collection with the results of those function calls. This is a weird concept, but it is at the core of Clojure and functional programming in general. {: ng-show="block101" .description}
(map inc [1 2 3]) ;=> (2 3 4)
(map (partial + 90) [0 30 60 90]) ;=> (90 120 150 180)
References: partial
Let's look at another function that takes a function. This one is
reduce
, and it is used to turn collections into a single value. {: ng-show="block111" .description}
reduce
takes the first two members of the provided collection and calls the provided function with those members. Next, it calls the provided function again--this time, using the result of the previous function call, along with the next member of the collection.reduce
does this over and over again until it finally reaches the end of the collection. {: ng-show="block111" .description}
(reduce str (turtle-names)) ;=> ":trinity:neo:oracle:cypher"
(reduce + [30 60 90]) ;=> 180
-
Create a function called
average
that takes a vector of maps. -
Use
[{:angle 30} {:angle 90} {:angle 50}]
as input. -
Calculate average value of :angle.
-
Hint: You will need to use the functions
map
,reduce
andcount
.
So far, all the functions we've seen have had names, like
+
andstr
andreduce
. However, functions don't need to have names, just like values don't need to have names. We call functions without names anonymous functions. An anonymous function is created withfn
, like so: {: ng-show="block201" .description}
Reference: Anonymous Function {: ng-show="block201" .description}
(fn [s1 s2] (str s1 " " s2))
Before we go forward, you should understand that you can always feel free to name your functions. There is nothing wrong at all with doing that. However, you will see Clojure code with anonymous functions, so you should be able to understand it. {: ng-show="block202" .description}
(defn join-with-space
[s1 s2]
(str s1 " " s2))
Why would you ever need anonymous functions? Anonymous functions can be very useful when we have functions that take other functions. Such as
map
orreduce
, which we learned in Functions section. Let's look at usage examples of anonymous functions: {: ng-show="block203" .description}
(map (fn [t] (forward t 45)) (turtle-names))
;=> ({:trinity {:length 45}} {:neo {:length 45}} {:oracle {:length
45}} {:cypher {:length 45}})
(reduce (fn [x y] (+ x y)) [1 2 3]) ;=> 6
(reduce (fn [a b] (str a ", " b)) (map name (turtle-names)))
;=> "trinity, neo, oracle, cypher"
{: .slide_title .slide}
When you are creating functions, you may want to assign names to values in order to reuse those values or make your code more readable. Inside of a function, however, you should not use
def
, like you would outside of a function. Instead, you should use a special form calledlet
. {: ng-show="block301" .description}
We can assign a name to value using
let
likedef
. When a name is assigned to a value, the name is called a symbol. {: ng-show="block305" .description}
Reference: Assignment let {: ng-show="block305" .description}
(let [mangoes 3
oranges 5]
(+ mangoes oranges))
;=> 8
This is the most complicated function we've seen so far, so let's go through each step. First, we have the name of the function, the documentation string, and the arguments, just as in other functions {: ng-show="block311" .description}
Next, we see
let
.let
takes a vector of alternating names and values.t1
is the first name, and we assign the result of(first names)
to it. We also assign the result of(last names)
tot2
. {: ng-show="block312" .description}
After the vector of names and values, there is the body of the
let
. Just like a the body of a function, this executes and returns a value. Within thelet
,t1
andt2
are defined. {: ng-show="block313" .description}
Go to
walk.clj
and writeopposite
function. Then, evaluateopposite
function at the last line of the function definition. Also, evaluate usage example ofopposite
function. {: ng-show="block314" .description}
;; function definition
(defn opposite
"Given a collection of turtle names, moves two of them in different directions."
[names]
(let [t1 (first names)
t2 (last names)]
(forward t1 40)
(backward t2 30)))
;; function usage
(opposite (turtle-names))
{% comment %}
🌟 A link below is for a slide only. Go to README.md instead. 🌟
{% endcomment %}