The for-comprehension tag has no wiki summary.
9
votes
8answers
336 views
for..else for Option types in Scala?
Suppose I have two Options and, if both are Some, execute one code path, and if note, execute another. I'd like to do something like
for (x <- xMaybe; y <- yMaybe) {
// do something
}
else {
...
8
votes
3answers
527 views
Type Mismatch on Scala For Comprehension
I don't understand why this construction causes a Type Mismatch error in Scala:
for (first <- Some(1); second <- List(1,2,3)) yield (first,second)
<console>:6: error: type mismatch;
...
6
votes
1answer
167 views
Why does Scala choose the type 'Product' for 'for' expressions involving Either and value definitions
If I create a for comprehension with a value definition with Option, it works as expected:
scala> for (a <- Some(4); b <- Some(5); val p = a * b) yield p
res0: Option[Int] = Some(20)
Doing ...
5
votes
3answers
2k views
Scala “<-” for comprehension
I have found that Scala always has a "natural explanation" to anything. Always something like "ohh, but that's just a function being called on this and that object with this and that parameter". In a ...
4
votes
2answers
212 views
When are scala's for-comprehensions lazy?
In Python, I can do something like this:
lazy = ((i,j) for i in range(0,10000) for j in range(0,10000))
sum((1 for i in lazy))
It will take a while, but the memory use is constant.
The same ...
4
votes
2answers
439 views
Scala for-comprehension syntax
In the following code, inside the for comprehension, I can refer to the string and index using a tuple dereference:
val strings = List("a", "b", "c")
for (stringWithIndex <- strings.zipWithIndex) ...
4
votes
6answers
773 views
Scala For Expression, Syntax Sugar or Syntax Poison?
I am asking a very basic question which confused me recently.
I wanna write a Scala For expression to do somethign like following:
for (i <- expr1) {
if (i.method) {
for (j <- i) {
...
4
votes
1answer
723 views
Understanding Scope on Scala's For Loops (For Comprehension)
In Chapter 3 of Programming Scala, the author gives two examples of for loops / for comprehensions, but switches between using ()'s and {}'s. Why is this the case, as these inherently look like ...
3
votes
2answers
206 views
Cartesian product of two lists
Given a map where a digit is associated to several characters
scala> val conversion = Map("0" -> List("A", "B"), "1" -> List("C", "D"))
conversion: ...
3
votes
2answers
176 views
Binding a single value within a for comprehension
The Learn You a Haskell tutorial has an example of using a let binder in a list comprehension:
calcBmis xs = [bmi | (w, h) <- xs, let bmi = w / h ^ 2, bmi >= 25.0]
The function takes a list ...
3
votes
3answers
168 views
println in scala for-comprehension
In a for-comprehension, I can't just put a print statement:
def prod (m: Int) = {
for (a <- 2 to m/(2*3);
print (a + " ");
b <- (a+1) to m/a;
c = (a*b)
if (c < m)) yield ...
2
votes
2answers
114 views
Is it good style to nest for-comprehensions in Scala?
I just found myself writing a piece of code that looks like this:
def language(frequencies: Array[String], text: Array[String]) = {
val allText = text.mkString.replace(" ", "")
val emaps = ...
2
votes
3answers
318 views
Can I use for-comprehenion / yield to create a map in Scala?
Can I "yield" into a Map?
I've tried
val rndTrans = for (s1 <- 0 to nStates;
s2 <- 0 to nStates
if rnd.nextDouble() < trans_probability)
...
2
votes
3answers
458 views
Scala for comprehensions and partial map
The Scala language specification section 6.19 says:
A for comprehension for (p <- e) yield e0 is translated to e.map { case p => e0 }
So...
scala> val l : List[Either[String, Int]] = ...
1
vote
2answers
77 views
How to use an autoincrement index in for comprehension in Scala
Is it possible to use an autoincrement counter in for comprehensions in Scala?
something like
for (element <- elements; val counter = counter+1) yield NewElement(element, counter)
1
vote
1answer
109 views
Converting a sequence of map operations to a for-comprehension
I read in Programming in Scala section 23.5 that map, flatMap and filter operations can always be converted into for-comprehensions and vice-versa.
We're given the following equivalence:
def ...
1
vote
3answers
64 views
Adding logging if return value is None
Suppose there are two functions findUser(id:String):Option[User] and findAddress(user:User):Option[Address] invoked as follows:
for(user <- findUser(id); address <- findAddress(user)) ...
1
vote
4answers
401 views
Scala for comprehension efficiency?
In the book "Programming In Scala", chapter 23, the author give an example like:
case class Book(title: String, authors: String*)
val books: List[Book] = // list of books, omitted here
// find all ...
0
votes
1answer
153 views
Monad transformer in for comprehensions
Consider:
def xs(c: String): Option[List[Long]] = ...
val ys: Stream[Long] = ...
Now I'd write a method something like:
def method(oc: Option[String]): Option[Long] = for {
c <- oc
...
0
votes
1answer
90 views
Need the best way to iterate a file returning batches of lines as XML
I'm looking for the best way to process a file in which, based on the contents, i combine certain lines into XML and return the XML.
e.g. Given
line 1
line 2
line 3
line 4
line 5
I may want the ...
0
votes
2answers
143 views
Mock for comprehension in scala
I have this piece of code
for (element <- table.find;
Right(info) = exceptionManager(mapper.getInfoFromDbObject(element)))
yield info
and I would like to unit test it. I want to mock ...