< Clojure Programming < Examples < API Examples

drop-while

user=> (drop-while pos? [1 2 3 -1 -2 3 4])
(-1 -2 3 4)

filter

user=> (filter nil? [:a :b nil nil :a]) 
(nil nil)
user=> (filter (fn[x](= x :b)) [:a :b nil nil :a]) 
(:b)

not-any?

user=> (not-any? neg? [1 2 3 4 5])
true
user=> (not-any? neg? [1 2 3 -4 5])
false

remove

user=> (remove nil? [:a :b nil nil :a]) 
(:a :b :a)

every?

user=> (every? pos? [1 2 3 4])
true
user=> (every? pos? [0 1 2 3])
false

some

user=> (some neg? [0 1 2 -3 4])
true
user=> (some #{:gamma} [:professor :gamma])
:gamma
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.