Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best way to test whether a list contains a given value in Clojure?

In particular, the behaviour of contains? is currently confusing me:

(contains? '(100 101 102) 101) => false

I could obviously write a simple function to traverse the list and test for equality, but there must surely be a standard way to do this?

share|improve this question
3  
Strange indeed, contains? has to be the most misleadingly named function in Clojure :) Here's hoping that Clojure 1.3 will see it renamed to contains-key? or similar. – j-g-faustus Jul 14 '10 at 19:05
I think this is talked to death several times now. contains? will not change. See here: groups.google.com/group/clojure/msg/f2585c149cd0465d and groups.google.com/group/clojure/msg/985478420223ecdf – kotarak Jul 15 '10 at 11:55
@kotarak thanks for the link! I actually agree with Rich here in terms of the use of the contains? name though I think it should be altered to throw an error when applied to a list or sequence – mikera Jul 15 '10 at 13:42

8 Answers

up vote 56 down vote accepted

Ah, contains?... supposedly one of the top five FAQs re: Clojure.

It does not check whether a collection contains a value; it checks whether an item could be retrieved with get or, in other words, whether a collection contains a key. This makes sense for sets (which can be thought of as making no distinction between keys and values), maps (so (contains? {:foo 1} :foo) is true) and vectors (but note that (contains? [:foo :bar] 0) is true, because the keys here are indices and the vector in question does "contain" the index 0!).

To add to the confusion, in cases where it doesn't make sense to call contains?, it simply return false; this is what happens in (contains? :foo 1) and also (contains? '(100 101 102) 101).

The correct way to do what you're trying to do is as follows:

; most of the time this works
(some #{101} '(100 101 102))

When searching for one of a bunch of items, you can use a larger set; when searching for false / nil, you can use false? / nil? -- because (#{x} x) returns x, thus (#{nil} nil) is nil; when searching for one of multiple items some of which may be false or nil, you can use

(some (zipmap [...the items...] (repeat true)) the-collection)

(Note that the items can be passed to zipmap in any type of collection.)

share|improve this answer
Thanks Michal - you are a font of Clojure wisdom as always! Looks like I'm going to write my own function in this case... it slightly surprises me that there isn't one already in the core language. – mikera Jul 14 '10 at 19:06
2  
As Michal said - there is already a function in core which does what you desire: some. – kotarak Jul 15 '10 at 11:57
Above, Michal commented about (some #{101} '(100 101 102)) saying that "most of the time this works". Isn't it fair to say that it always works? I'm using Clojure 1.4 and the documentation uses this kind of example. It works for my and makes sense. Is there some kind of special case where it does not work? – David James Jan 5 at 23:58
1  
@DavidJames: It doesn't work if you're checking for the presence of false or nil -- see the following paragraph. On a separate note, in Clojure 1.5-RC1 contains? throws an exception when given a non-keyed collection as an argument. I suppose I'll edit this answer when the final release comes out. – Michał Marczyk Jan 7 at 23:46

Here's my standard util for the same purpose:

(defn in? 
  "true if seq contains elm"
  [seq elm]  
  (some #(= elm %) seq))
share|improve this answer
Thanks for adding to the collection! Seems like everyone has found the need for one of these :-) – mikera Jul 14 '10 at 19:40
Seems like a popular pastime, indeed. Perhaps we'll end up with a collection of all possible ways to implement it? :) – j-g-faustus Jul 14 '10 at 19:47
Tim Toady Bicarbonate FTW! – Daniel Dinnyes Mar 26 at 15:29

For what it is worth, this is my simple implementation of a contains function for lists:

(defn list-contains? [coll value]
  (let [s (seq coll)]
    (if s
      (if (= (first s) value) true (recur (rest s) value))
      false)))
share|improve this answer

Here's a quick function out of my standard utilities that I use for this purpose:

(defn seq-contains?
  "Determine whether a sequence contains a given item"
  [sequence item]
  (if (empty? sequence)
    false
    (reduce #(or %1 %2) (map #(= %1 item) sequence))))
share|improve this answer
Thanks Greg! I just wrote something vaugely similar, posted it above.... – mikera Jul 14 '10 at 19:23
Yeah, yours has the advantage that it will stop as soon as it finds a match rather than continuing to map the entire sequence. – Greg Jul 14 '10 at 19:28

I've built upon j-g-faustus version of "list-contains?". It now takes any number of arguments.

(defn list-contains?
([collection value]
    (let [sequence (seq collection)]
        (if sequence (some #(= value %) sequence))))
([collection value & next]
    (if (list-contains? collection value) (apply list-contains? collection next))))
share|improve this answer

I know that i'm a little bit later, but what about:

(contains? (set '(101 102 103)) 102)

At last in clojure 1.4 outputs true :)

share|improve this answer
1  
(set '(101 102 103)) is the same as %{101 102 103}. So your answer can be written as (contains? #{101 102 103} 102). – David James Jan 6 at 0:03
This has the disadvantage of requiring the conversion of the original list '(101 102 103) to a set. – David James Jan 6 at 0:05

(not= -1 (.indexOf '(101 102 103) 102)) works, but below is better: (some #(= 102 %) '(101 102 103))

share|improve this answer

The recommended way is to use some with a set - see documentation for clojure.core/some.

You could then use some within a real true/false predicate, e.g.

(defn in? [coll x] (if (some #{x} coll) true false))
share|improve this answer
why the if true and false? some already returns true-ish and false-ish values. – subsub Mar 25 at 23:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.