I have a l: List[Char] of characters which I want to concat and return as a String in one for loop.

I tried this

val x: String = for(i <- list) yield(i)

leading to

 error: type mismatch;  
 found   : List[Char]  
 required: String

So how can I change the result type of yield?

Thanks!

link|improve this question
Is there a reason why you need to use the for comprehension for that? – soc May 29 '11 at 13:19
feedback

2 Answers

Try this:

val x: String = list.mkString

This syntax:

for (i <- list) yield i

is syntactic sugar for:

list.map(i => i)

and will thus return an unchanged copy of your original list.

link|improve this answer
list.sum maybe? ... Just joking. You're right. – soc May 28 '11 at 17:33
very short form...cool :) – xyz May 29 '11 at 10:30
@soc: This is indeed possible with scalaz: (List("a", "b", "c") ∑) assert_≟ "abc". – Debilski May 29 '11 at 12:38
But this won't work with Chars, right? – soc May 29 '11 at 13:18
feedback

You can use the following:

val x: String = (for(i <- list) yield(i))(collection.breakOut)

See this question for more information about breakOut.

link|improve this answer
This is the one I was looking for. Thanks – xyz May 29 '11 at 10:29
feedback

Your Answer

 
or
required, but never shown

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