Clarify empty lists & other list operations
This commit is contained in:
parent
2e3fead03f
commit
25b2f11247
@ -9,9 +9,11 @@
|
|||||||
["02_lists" {"__" [1 2 3 4 5
|
["02_lists" {"__" [1 2 3 4 5
|
||||||
1
|
1
|
||||||
[2 3 4 5]
|
[2 3 4 5]
|
||||||
|
3
|
||||||
|
0
|
||||||
()
|
()
|
||||||
[:a :b :c :d :e]
|
[:a :b :c :d :e]
|
||||||
[0 :a :b :c :d :e]
|
[:e :a :b :c :d]
|
||||||
:a
|
:a
|
||||||
[:b :c :d :e]
|
[:b :c :d :e]
|
||||||
"No dice!"
|
"No dice!"
|
||||||
|
@ -8,14 +8,20 @@
|
|||||||
"As well as the rest"
|
"As well as the rest"
|
||||||
(= __ (rest '(1 2 3 4 5)))
|
(= __ (rest '(1 2 3 4 5)))
|
||||||
|
|
||||||
"The rest when nothing is left is empty"
|
"Count your blessings"
|
||||||
|
(= __ (count '(dracula dooku chocula)))
|
||||||
|
|
||||||
|
"Before they are gone"
|
||||||
|
(= __ (count '()))
|
||||||
|
|
||||||
|
"The rest, when nothing is left, is empty"
|
||||||
(= __ (rest '(100)))
|
(= __ (rest '(100)))
|
||||||
|
|
||||||
"And construction by adding an element to the front is simple"
|
"Construction by adding an element to the front is easy"
|
||||||
(= __ (cons :a '(:b :c :d :e)))
|
(= __ (cons :a '(:b :c :d :e)))
|
||||||
|
|
||||||
"Conjoining an element to a list can be done in the reverse order"
|
"Conjoining an element to a list isn't hard either"
|
||||||
(= __ (conj '(:a :b :c :d :e) 0))
|
(= __ (conj '(:a :b :c :d) :e))
|
||||||
|
|
||||||
"You can use a list like a stack to get the first element"
|
"You can use a list like a stack to get the first element"
|
||||||
(= __ (peek '(:a :b :c :d :e)))
|
(= __ (peek '(:a :b :c :d :e)))
|
||||||
@ -26,9 +32,12 @@
|
|||||||
"But watch out if you try to pop nothing"
|
"But watch out if you try to pop nothing"
|
||||||
(= __ (try
|
(= __ (try
|
||||||
(pop '())
|
(pop '())
|
||||||
(catch IllegalStateException e "No dice!")))
|
(catch IllegalStateException e
|
||||||
|
"No dice!")))
|
||||||
|
|
||||||
"The rest of nothing isn't so strict"
|
"The rest of nothing isn't so strict"
|
||||||
(= __ (try
|
(= __ (try
|
||||||
(rest '())
|
(rest '())
|
||||||
(catch IllegalStateException e "No dice!"))))
|
(catch IllegalStateException e
|
||||||
|
"No dice!"))))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user