Scalaz: Type Classes and Purely Functional Data Structures for Scala
2
votes
0answers
60 views
How to I convert between monad stacks with transformers in scalaz 7
I'm struggling with understanding monad stacks and monad transformers with Scalaz7. I feel I'm pretty close to the answer but just can't get my head around a particular step.
The following code ...
2
votes
1answer
37 views
Is providing explicitly the context bound possible in Scala?
In the following code:
def sum[A: Monoid](xs: List[A]): A = {
val m = implicitly[Monoid[A]]
xs.foldLeft(m.mzero)(m.mappend)
}
If I already have in my scope a Monoid[Int] that has ...
0
votes
2answers
89 views
Use scalaz in console repl without creating a project
Is there any way to use scalaz by simple scala command in the terminal, without creating sbt project?
10
votes
0answers
239 views
Monad transformer for NonEmptyList?
It seems to me that Scalaz' NonEmptyList has a monad instance, so a monad transformer for it (a bit similar to ListT) should be possible. Is that correct?
If so, is there one out there? (I couldn't ...
7
votes
1answer
113 views
Why does scalaz's implementation of Monoid for Option evaluate the f2 function twice?
The definition of the scalaz's option monoid is as follows:
implicit def optionMonoid[A: Semigroup]: Monoid[Option[A]] = new Monoid[Option[A]] {
def append(f1: Option[A], f2: => Option[A]) = ...
5
votes
1answer
92 views
Try[Result], IO[Result], Either[Error,Result], which should I use in the end
I'd like to know what should be the signature of my methods so that I handle different kind of failures elegantly.
This question is somehow the summary of many questions I already had about error ...
4
votes
1answer
160 views
Scala: Bad inferred type for Option composed with StateT monad transformer
I'm somewhat familiar with Haskell monad transformers, but new to Scalaz (version 7). I made (what I thought was) a straightforward translation from the following Haskell code:
import ...
4
votes
1answer
95 views
Scalaz's Unapply: why doesn't traverseU work with State? Why must traverseS exist?
Usually Scalaz's Unapply does a pretty good job, but it seems to break down here with traverseU:
scala> import scalaz._, Scalaz._, Unapply._
import scalaz._
import Scalaz._
import Unapply._
...
4
votes
3answers
147 views
Scalaz 7 Iteratee to process large zip file (OutOfMemoryError)
I'm trying to use the scalaz iteratee package to process a large zip file in constant space. I have a long-running process I need to perform on each file in the zip file. Those processes can (and ...
1
vote
1answer
46 views
sequenceU returns G.M[List[G.A]] instead of expected type
I'm trying to use the sequenceU function on a List of Validation objects, but I keep on getting the error:
type mismatch;
found : G.M[List[G.A]]
required: ...
1
vote
1answer
71 views
Scalaz minimal imports required to inject right and left use
Simple question, I have looked at this one already: Managing imports in Scalaz7, but I can't figure out how to minimally inject the right and left methods into my objects to construct instances of \/.
...
3
votes
2answers
117 views
Best way to write Scala methods signature dealing with exceptions
In order to handle exceptions in Scala, I prefer avoiding basic try/catch and benefit from functional thinking with Validation from Scalaz (similar to Either type in certain cases).
My application ...
2
votes
1answer
109 views
scalaz Trampoline and IO
This question is related to this other question but reduced to a much simpler case:
I assume the following imports:
import scalaz._, Scalaz._
import Free._, effect._
I have the following ...
2
votes
1answer
64 views
FP or typelevel tools to groupBy on deep leaf in nested data?
I got a deeply nested datastructure:
Seq[Seq[(String, Seq[(String, Seq[(String, Try[Boolean])])], Long)]]
Is there a nice functional way to groupBy on Try.isFailure?
With Shapeless it is possible ...
9
votes
1answer
236 views
How to use IO with Scalaz7 Iteratees without overflowing the stack?
Consider this code (taken from here and modified to use bytes rather than lines of characters).
import java.io.{ File, InputStream, BufferedInputStream, FileInputStream }
import scalaz._, Scalaz._, ...
4
votes
1answer
113 views
Correct encoding of this existential type in Scala?
I'm interested in encoding this Stream type from the Stream Fusion paper from Coutts et al. I'm exploring stream fusion in Scala, attempting to use macros in place of GHC's rewrite rules.
data Stream ...
5
votes
1answer
102 views
Simple control flow in scalaz effect
Take this simple bit of code:
var line = "";
do {
println("Please enter a non-empty line: ")
line = readLine()
} while (line.isEmpty())
println("You entered a non-empty line: " + line)
It's ...
1
vote
2answers
116 views
Scala combine separate List[Map[String,Any]] into one list and concat Maps
I have two lists of List[Map[String,String]] where the second list of Maps has a key "stringKey" that matches a single "stringKey" in the first list of Maps. I need to combine both lists into one and ...
8
votes
1answer
156 views
Using context bounds “negatively” to ensure type class instance is absent from scope
tl;dr: How do I do something like the made up code below:
def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor"
The 'Not[Functor]', being the made up part here.
I want it to ...
3
votes
1answer
98 views
Deconstructing Scalaz <**>
Can someone with better knowledge help me understand how Scalaz <**> and co. works ? I'm new to Scalaz and little bit lost in exploring.
What I want to do is accumulate errors within List ...
6
votes
1answer
184 views
example uses scalaz.Lens's modf, modp and xmap
There are number of great tutorials and posts out there covering the more straightforward of Lens's methods, e.g. Cleaner way to update nested structures; can anyone provide example uses for these ...
3
votes
1answer
96 views
point reader monad scala
is there a way, how to easily point a value in Reader context?
I can use Reader object and ignore the context:Reader {
_ ⇒ 3
}
Scalaz seems to have a method point for this specifically. I see, that ...
4
votes
2answers
135 views
Port Haskell code using Control.Parallel to Scala
The Haskell code below uses par and pseq to do some multicore number-crunching as a toy to show several cores being used. What would be the easiest and most idiomatic way to express this in Scala? ...
6
votes
1answer
158 views
Why is List a Semigroup but Seq is not?
I'm fairly new to scalaz and I am trying to figure out why the following code works:
import scalaz._
import Scalaz._
scala> Map[String,List[String]]() |+| Map[String,List[String]]()
res3: ...
0
votes
0answers
105 views
Scala compiler error when using Scalaz7 and Json4s
I'm running into a compiler problem when using Scala7-M9 and json4s 3.0.1 with compiler versions 2.10.0 and 2.10.1
When compiling the short snippet of JSON parsing code, I get the following compiler ...
2
votes
1answer
148 views
Use FirstOption monoid instance in tuple
Is it possible to convert (Option[Int], Option[String]) to (FirstOption[Int], FirstOption[String])? in a shorter way than x=> (x._1.first, x._2.first)?
It seems to me that there should be a way ...
8
votes
1answer
412 views
Is is possible to improve type inference for partially applied types in Scala?
I'm trying to improve the type inference of the traverse_ function in the code below:
import scala.language.higherKinds
trait Applicative[AF[_]] {
def ap[A, B](a: AF[A])(f: AF[A => B]): AF[B]
...
1
vote
1answer
119 views
Pimping scalaz Memo
I like the new scalaz Memo functionality but find it lacks 2 things: 1) it hides the underlying Map, which I need access to--at least a List of all the values, and 2) I want a version that's ...
5
votes
2answers
183 views
Scala: idiomatic way to merge list of maps with the greatest value of each key?
I have a List of Map[Int, Int], that all have the same keys (from 1 to 20) and I'd like to merge their contents into a single Map[Int, Int].
I've read another post on stack overflow about merging ...
1
vote
4answers
151 views
Scala Option object inside another Option object
I have a model, which has some Option fields, which contain another Option fields. For example:
case class First(second: Option[Second], name: Option[String])
case class Second(third: Option[Third], ...
3
votes
1answer
118 views
don't understand scalaz endo function
In scalaz, the endo function in Function1Ops is implemented this way:
def endo(implicit ev: R =:= T): Endo[T] =
Endo.endo(t => ev(self(t)))
I am curious why in the body of Endo.endo ...
8
votes
3answers
218 views
How to convert a List[A] into a List[B] using an implicit conversion
I have the following use case which occurs often in my code:
A Collection[A]
An implicit conversion A to B
and I want to obtain a collection of B. I can use implicitly like the following:
case ...
2
votes
1answer
158 views
Accumulating only validation errors in Scalaz
I am a beginner in the work of functional programming and I have a sequence of ValidationNEL[A,B] and I would like to accumulate the errors into a new ValidationNEL[A,B]. This depends on the fact ...
3
votes
2answers
237 views
How to write a scalaz.IsEmpty parameter for generic types
I am trying to write a generic method that wraps anything that has an scalaz.IsEmpty typeclass instance into an Option. It should return None for empty values, and wrap it into Some if it is ...
13
votes
3answers
283 views
Pronounceable names for scalaz operators?
While learning Haskell, I found the answer to this question extremely useful, as it associated the concepts with the operators: Are there pronounceable names for common Haskell operators?
Is there an ...
6
votes
1answer
199 views
Processing a list of Scalaz6 Validation
Is there an idiomatic way to handle a collection of Validation in Scalaz6?
val results:Seq[Validation[A,B]]
val exceptions = results.collect{case Failure(exception)=>exception}
...
3
votes
1answer
94 views
Where is the type @> in scalaz source code?
I've been reading the source for scalaz's Lenses, which you can find at https://github.com/scalaz/scalaz/blob/scalaz-seven/core/src/main/scala/scalaz/Lens.scala
Starting at line 303, there are ...
3
votes
2answers
173 views
Building a minimal predicate function by composing Option[predicate] functions in Scala (possibly with scalaz)
I have results in a list that I wish to filter.
The user can supply a specific limit to any of the attributes on a row (e.g., I only want to see the rows where x == 1). If they specify no limit, then ...
9
votes
1answer
295 views
Distinction between type aliases and type lambdas
This question is about a limitation of Scala's implicit resolution system that I've run into a few times when using Scalaz and that doesn't make a lot of sense to me. I've distilled the problem to a ...
5
votes
3answers
322 views
Chaining Scalaz validation functions: Function1[A,Validation[E,B]]
I'm trying to write some code to make it easy to chain functions that return Scalaz Validation types. One method I am trying to write is analogous to Validation.flatMap (Short circuit that ...
5
votes
1answer
235 views
How to handle nested structure when traversing with state monad
I have a nested structures which I'm converting to XML using a scalaz state monad. This works well until I have to deal with multi-level nested structures. Here is a simplified example similar to what ...
4
votes
1answer
110 views
Matching at least 1 of 3 Scala Regexes using an Applicative Functor
I have three Scala regular expressions that I need to test to see if any of them matches a given String.
I know that I can do the following:
val matches = R1.findFirstIn(myString).isDefined ||
...
1
vote
1answer
84 views
General enrichment providing “uncurried” in scala
Does there exist a general enrichment for f: A => B => ... => Z in scala/scalaz/shapeless/etc. such that f.uncurried:(A, B, ...) => Z?
Currently I have this, but I believe there must be a ...
3
votes
1answer
240 views
Scalaz - combining List and State Monad in for comprehension
I am planning to start using Monadic style in my Scala code for, amongst others, threading state. Here's a simplified example of combining 3 monadic functions (and caring only about the side effects)
...
2
votes
1answer
95 views
Parsing scalaz.Validation in Java
I have a scala function with the following signature:
def getValue: Validation[ Throwable, String ]
Now, I want to process in Java the result (say res) of calling this function.
I can call ...
4
votes
2answers
127 views
type parameter inference + higher order types + type classes = :-(
import scalaz._; import Scalaz._
def foo[M[_]:MonadPlus,A](a:A) = a.point[M]
// foo: [M[_], A](a: A)(implicit evidence$1: scalaz.MonadPlus[M])M[A]
def bar1[M[_]:MonadPlus](i:Int): M[Int] =
...
4
votes
2answers
145 views
How to use lift from ToFunctorOps
ToFunctorOps defines a lift method via the ToLiftV implicit, but I can't seem to make it find my functor instances:
import scalaz.std.option._
import scalaz.syntax.functor._
import scalaz.syntax.id._
...
6
votes
1answer
154 views
how does work scalaz.Validation loopSuccess and loopFailure
Could someone explain with real world examples how does work below methods of scalaz.Validation?
I mean loopSuccess and loopFailure.
Snippetes from source code (scalaz7):
scalaz.Validation:
/** ...
0
votes
1answer
79 views
underscore in expression
What does the underscore mean in below snipped. This is fragment of scalaz7 library:
trait Apply[F[_]] extends Functor[F] { self =>
//...
def ap[A, B](fa: => F[A])(f: => F[A => B]): ...
1
vote
1answer
143 views
global, default implicits in scalaz (scalaz7)
When I code using Scalaz I often encounter problems, that there is no implicit in scope. I think there should be some default implicits somwhere in vast package scalaz, but either I don't know where ...



