vote up 3 vote down star

Hello,

I've recently been working on a beginner's project in Scala, and have a beginner question about Scala's Lists.

Say I have a list of tuples ( List[Tuple2[String, String]], for example). Is there a convenience method to return the first occurence of a specified tuple from the List, or is it necessary to iterate through the list by hand?

flag

5 Answers

vote up 3 vote down

You could try using find.

link|flag
vote up 2 vote down

If you're learning scala, I'd take a good look at the Seq trait. It provides the basis for much of scala's functional goodness.

link|flag
vote up 3 vote down
scala> val list = List(("A", "B", 1), ("C", "D", 1), ("E", "F", 1), ("C", "D", 2), ("G", "H", 1))
list: List[(java.lang.String, java.lang.String, Int)] = List((A,B,1), (C,D,1), (E,F,1), (C,D,2), (G,H,1))

scala> list find {e => e._1 == "C" && e._2 == "D"}
res0: Option[(java.lang.String, java.lang.String, Int)] = Some((C,D,1))
link|flag
vote up 3 vote down

As mentioned in a previous comment, find is probably the easiest way to do this. There are actually three different "linear search" methods in Scala's collections, each returning a slightly different value. Which one you use depends upon what you need the data for. For example, do you need an index, or do you just need a boolean true/false?

link|flag
vote up 0 vote down

You could also do this, which doesn't require knowing the field names in the Tuple2 class--it uses pattern matching instead:

list find { case (x,y,_) => x == "C" && y == "D" }

"find" is good when you know you only need one; if you want to find all matching elements you could either use "filter" or the equivalent sugary for comprehension:

for ( (x,y,z) <- list if x == "C" && y == "D") yield (x,y,z)
link|flag

Your Answer

Get an OpenID
or

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