Scalaz is the Type Classes and Pure Functional Data Structures for Scala

learn more… | top users | synonyms

2
votes
1answer
77 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 ...
1
vote
1answer
86 views

Cohesive way to validate a class in Scala using Scalaz 7

My goal is to validate User's fields within the object's applymethod before creating one effective User instance: case class User(String userName, String password) object User { def ...
7
votes
1answer
114 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]) = ...
4
votes
3answers
154 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 ...
3
votes
2answers
118 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
111 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 ...
9
votes
1answer
240 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._, ...
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 ...
3
votes
1answer
99 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 ...
6
votes
1answer
159 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: ...
2
votes
1answer
172 views

Best way to handle object's fields validation => Either / Try (scala 2.10) / ValidationNEL (scalaz)

Let's assume an object constructed using a builder pattern. This builder pattern would contain a build method focusing on fields validation and then on conversion to the targeted type. This ...
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
1answer
242 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) ...
6
votes
1answer
155 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
147 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 ...
7
votes
1answer
138 views

Managing imports in Scalaz7

I am using scalaz7 in a project and sometimes I run into issues with imports. The simplest way get started is import scalaz._ import Scalaz._ but sometimes this can lead to conflicts. What I have ...
3
votes
1answer
154 views

Using Scalaz7 with Play

I am having a little trouble in using Scalaz7 together with Play. Right now I am using the standard Play distribution with Scala 2.9.1 and scalaz-core 7.0-SNAPSHOT. This lives in the repository ...
2
votes
4answers
201 views

Scala: extracting a repeated value from a list

I have often the need to check if many values are equal and in case extract the common value. That is, I need a function that will work like follows: extract(List()) // None extract(List(1,2,3)) // ...
2
votes
1answer
142 views

Scalaz 7: Idiomatic way of turning values in Either to plain values plus logged errors?

Given a function f: A => E \/ B, what is an idiomatic way to gather the B results for some list of As while logging the Es? I came up with the following (partially while answering this SO ...
18
votes
4answers
602 views

Finding my way through Scalaz [duplicate]

Possible Duplicate: Good scalaz introduction I would like to learn more about Scalaz, possibly using Scalaz7 to be avoid rewiring my brain once it is declared stable. My problem is that ...
3
votes
1answer
146 views

Where is `sequence` in Scalaz7

I am learning Scalaz and I have a project that already makes use of Scalaz7. Following this question I would like to use the function sequence[T](l: List[Option[T]]): Option[List[T]] (not that it ...
9
votes
2answers
427 views

why isn't Validation a Monad? (scalaz7)

an example use case: def div2(i: Int): Validation[String, Int] = if (i%2 == 0) Validation.success(i/2) else Validation.failure("odd") def div4(i: Int) = for { a <- div2(i) b ...
7
votes
2answers
547 views

Combining validations with scalaz 7

Given the following functions: def foo( a: A ): ValidationNEL[String,Seq[B]] = ... def bar( b: B ): ValidationNEL[String,C] = ... I would like to combine them such as to build a function, which ...
2
votes
1answer
141 views

Scalaz 7 - why using type alias results in ambigous typeclass resolution for Reader

Code to test with: import scalaz.{Reader, Applicative} class ReaderInstanceTest { type IntReader[A] = Reader[Int, A] val a = Applicative[({type l[A] = Reader[Int, A]})#l] // fine val b = ...