up vote 4 down vote favorite
share [g+] share [fb]
def array = [1,2,3,4,5]
println 3 in array

prints true. What do I need to overload to support in for any object?

Example:

class Whatever {
   def addItem(item) {
      // add the item
   }
}

def w = new Whatever()
w.addItem("one")
w.addItem("two")
println "two" in w

I know I could make the collection this class uses public, but I'd like to use in instead.

link|improve this question

Can you give a sample of what you'd like to do? – Pascal Thivent Oct 17 '09 at 15:17
feedback

4 Answers

up vote 3 down vote accepted

I asked on the Groovy mailing list. Here's the thread. The answer is isCase

class A
{
  def isCase(o) {
    return false;
  }
}

a = new A()
println 6 in a // returns false
link|improve this answer
Sweet. After a quick search, looks like that's documented here: docs.codehaus.org/display/GROOVY/… – Rob Hruska Oct 19 '09 at 19:53
+1. I wish I could vote Guillaume Laforge for this +1, after all, he was the one to answer it on the mailing list ;-) – Leonel Nov 5 '09 at 15:53
feedback

You could make Whatever implement Collection or a Collection subinterface. Groovy has an iterator() implementation for Object, and it looks like for operators that work on aggregate objects, Groovy will attempt to convert the Object to a Collection and then perform the aggregate function.

Alternatively, you might be able to have Whatever implement Iterable. I'm still trying to find a reference for this and write a proof of concept to verify it.

The Groovy documentation for the Iterator Pattern might indicate that this will work.

link|improve this answer
feedback

I wonder if this is possible, the Membership Operator (in) isn't listed on the Operator Overloading page.

link|improve this answer
I noticed that too. – Tempus Oct 17 '09 at 17:13
feedback

Have you tried creating an "in" method?

link|improve this answer
in is a language keyword. I get a compilation error. – Tempus Oct 17 '09 at 16:17
feedback

Your Answer

 
or
required, but never shown

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