Scalaz is a library written in Scala, with the intention to include general functions that are not currently available in the core Scala API. More information at Scalaz Project page It is released under the BSD (open source) license.
46
votes
7answers
3k views
Good scalaz introduction
Recently scalaz caught my eye. It looks very interesting, but I have not found any good introduction to the library. Seems that scalaz incorporates a lot of ideas from haskell and mathematics. Most ...
36
votes
1answer
3k views
Function syntax puzzler in scalaz
Following watching Nick Partidge's presentation on deriving scalaz, I got to looking at this example, which is just awesome:
import scalaz._
import Scalaz._
def even(x: Int) : ...
27
votes
4answers
3k views
Different Scala Actor Implementations Overview
I'm trying to find the 'right' actor implementation for my thesis. I realized there is a bunch of them and it's a bit confusing to pick one. Personally I'm especially interested in remote actors, but ...
24
votes
2answers
797 views
Scalaz state monad examples
I haven't seen many examples of the scalaz state monad. There is this example but it is hard to understand and there is only one other question on stack overflow it seems.
I'm going to post a few ...
18
votes
5answers
638 views
Real World Functional Programming in Scala
Soooo...
Semigroups, Monoids, Monads, Functors, Lenses, Catamorphisms, Anamorphisms, Arrows... These all sound good, and after an exercise or two (or ten), you can grasp their essence. And with ...
12
votes
4answers
807 views
What is a monad-transformer as distinct from a monad?
The question says it all, really. I know a (Scala) Monad looks like this:
trait Monad[M[_]] {
def pure[A](a : A) : M[A]
def bind[A, B](ma : M[A], f : A => M[B]) : M[B]
}
What does a Monad ...
12
votes
6answers
727 views
Clojure's 'let' equivalent in Scala
Often I face following situation: suppose I have these three functions
def firstFn: Int = ...
def secondFn(b: Int): Long = ...
def thirdFn(x: Int, y: Long, z: Long): Long = ...
and I also have ...
12
votes
4answers
389 views
What is a DList?
I tried googling for this but all I got were stories about minor celebrities. Given the lack of documentation, what is a DList?
12
votes
6answers
604 views
Functional equivalent of if (p(f(a), f(b)) a else b
I'm guessing that there must be a better functional way of expressing the following:
def foo(i: Any) : Int
if (foo(a) < foo(b)) a else b
So in this example f == foo and p == _ < _. There's ...
11
votes
2answers
287 views
Using scalaz state in a more complicated computation
I'm trying to understand how to use scalaz State to perform a complicated stateful computation. Here is the problem:
Given a List[Int] of potential divisors and a List[Int] of numbers, find a ...
11
votes
2answers
231 views
Map on Scalaz Validation failure
import scalaz._
import Scalaz._
"abc".parseInt
This will return a Validation[NumberFormatException, Int].
Is there a way I can apply a function on the failure side (such as toString) to get a ...
11
votes
1answer
371 views
Will using Scala in a more functional way (scalaz) incur a performance/maintainability penalty?
I'm currently working on a small project (< 10k loc) which is mainly pure but relies on mutable optimizations mainly based on iterators and some data-structure reuse for heavy-duty calculations.
...
10
votes
1answer
591 views
Basic Scalaz State question
How do I use State to mimic the behaviour of List.zipWithIndex? What I have come up with so far (which doesn't work) is:
def numberSA[A](list : List[A]) : State[Int, List[(A, Int)]] = list match {
...
10
votes
4answers
421 views
How to combine Option values in Scala?
I want to be able to apply an operation f: (T,T) => T to Option[T] values in Scala. I want the result to be None if any of the two values is None.
More specifically, I want to know if is there a ...
9
votes
1answer
258 views
How can I use Kleisli composition with functions returning Validations?
How do I compose two functions returning Validations? Following are my attempts that didn't work:
scala> def f: Int => Validation[String, Int] = i => if(i % 2 == 0) Success(i * 2) else ...
9
votes
2answers
351 views
In Scala, is there a shorthand for reducing a generic type's arity?
I want to call Scalaz's pure method to put a value into the State monad. The following works:
type IntState[A] = State[Int, A]
val a = "a".pure[IntState]
a(1)
(Int, java.lang.String) = (1,a)
I ...
9
votes
13answers
1k views
Scala functional programming gymnastics
I am trying to do the following in as little code as possible and as functionally as possible:
def restrict(floor : Option[Double], cap : Option[Double], amt : Double) : Double
Obviously the ...
9
votes
2answers
908 views
Scalaz: request for use case for Cokleisli composition
This question isn't meant as flame-bait! As it might be apparent, I've been looking at Scalaz recently. I'm trying to understand why I need some of the functionality that the library provides. Here's ...
8
votes
2answers
199 views
Writing type class instances for nested classes in Scala
In this recent Stack Overflow question, the author wanted to change a list of parsers of some type into a parser that returns lists of that type. We can imagine doing this with Scalaz's sequence for ...
8
votes
5answers
364 views
Scala: Merge maps by key
Say I have two maps:
val a = Map(1 -> "one", 2 -> "two", 3 -> "three")
val b = Map(1 -> "un", 2 -> "deux", 3 -> "trois")
I want to merge these maps by key, applying some function ...
7
votes
3answers
405 views
Scala PartialFunction can be Monoid?
I thought PartialFunction can be Monoid. Is my thought process correct ?
For example,
import scalaz._
import scala.{PartialFunction => -->}
implicit def ...
7
votes
1answer
339 views
Composable using scalaz Arrow?
I have two functions.
def process(date: DateTime, invoice: Invoice, user: User, reference: Reference) : (Action, Iterable[Billable])
def applyDiscount(billable: Billable) : Billable
How can I ...
7
votes
1answer
141 views
scalaz List[StateT].sequence - could not find implicit value for parameter n: scalaz.Applicative
I'm trying to figure out how to use StateT to combine two State state transformers based on a comment on my Scalaz state monad examples answer.
It seems I'm very close but I got an issue when trying ...
7
votes
6answers
357 views
How to reduce a Seq[Either[A,B]] to a Either[Seq[A],Seq[B]]
Given a sequence of eithers Seq[Either[String,A]] with Left being an error message. I want to obtain an Either[String,Seq[A]] where I get a Right (which will be a Seq[A]), if all elements of the ...
7
votes
4answers
221 views
Does development with scalaz require an Unicode/APL-like keyboard?
Can scalaz be used without a keyboard containing the appropriate Unicode characters or does every Unicode identifier also have an "ASCII" equivalent (and if yes, is there any guarantee that it stays ...
7
votes
2answers
302 views
Can I transform this asynchronous java network API into a monadic representation (or something else idiomatic)?
I've been given a java api for connecting to and communicating over a proprietary bus using a callback based style. I'm currently implementing a proof-of-concept application in scala, and I'm trying ...
6
votes
1answer
81 views
How to compose function to applicatives with scalaz
While learning Scalaz 6, I'm trying to write type-safe readers returning validations. Here are my new types:
type ValidReader[S,X] = (S) => Validation[NonEmptyList[String],X]
type MapReader[X] = ...
6
votes
2answers
187 views
a clean way to combine two tuples into a new larger tuple in scala?
Let's say I have the following tuples:
scala> val t1 = Tuple2("abcd", "efg")
t1: (java.lang.String, java.lang.String) = (abcd,efg)
scala> val t2 = Tuple2(1234, "lmnop")
t2: (Int, ...
6
votes
5answers
347 views
Summing a List of Options with Applicative Functors
I have a List[Option[Int]] and want to sum over it using applicative functors.
From [1] I understand that it should be something like the following
import scalaz._
import Scalaz._
...
6
votes
3answers
144 views
When using type classes, how to deal with object in different ways?
Suppose I have a type class Graph[G,V] which states that an object of type G is also a graph with vertices of type V.
Now I have an implicit that lets me treat sets of pairs of type A as a graph with ...
6
votes
2answers
162 views
Scalaz library import technique reasoning
Do any of you know why examples from Scalaz always use this import technique:
import scalaz._
import Scalaz._
rather than:
import scalaz.Scalaz._
? I'm trying to understand what the reasoning ...
6
votes
3answers
272 views
Porting python-twisted based code to scala: framework advice needed
I am trying to port a significant amount of code written in python with twisted to scala, and I'm looking for opinions on what framework combination to choose.
The thing is essentially an RPC (custom ...
6
votes
2answers
359 views
Scalaz validation and ApplicativeBuilder limits
We're using scalaz validation trait in our project to validate HTTP parameters. The common case is taking few validated values and performing neccessary action only if all of them are valid, returning ...
6
votes
2answers
495 views
switch function and object with scalaz' |>
I can use scalaz |> operator when I want to switch function and object so there can be a little more readability acquired. Let me introduce you a model function :def length2(x:String) = x.length * ...
6
votes
1answer
965 views
Example of using scalaz Monad
Can anybody give an example of using scalaz Monad for a simple but non-trivial and practically useful task ?
6
votes
1answer
185 views
Type inference question using Scalaz.ListW.<^>
I was playing around with ListW.<^>, the definition of which is as follows:
def <^>[B: Zero](f: NonEmptyList[A] => B): B = value match {
case Nil => ∅
case h :: t => ...
6
votes
3answers
647 views
Convert a List of Options to an Option of List using Scalaz
I want to transform a List[Option[T]] into a Option[List[T]]. The signature type of the function is
def lo2ol[T](lo: List[Option[T]]): Option[List[T]]
The expected behavior is to map a list that ...
6
votes
1answer
562 views
Scalaz Kleisli question
There is a trait called Kleisli in the scalaz library. Looking at the code:
import scalaz._
import Scalaz._
type StringPair = (String, String)
val f: Int => List[String] = (i: Int) => ...
5
votes
4answers
278 views
Cartesian product traverse in scalaz
In Eric Torreborre's blogpost on the paper Essence of the Iterator Pattern, he describes how the cartesian product of a traverse is also a traverse.
Can anyone show me an example of this using the ...
5
votes
1answer
136 views
Is there a more idiomatic way of getting IO[Option[A]] from Option[IO[Option[A]] then using sequence and mapping join?
I'm running into quite a few places where I have something akin to
def f(s: String): Option[Long] = ...
def g(l: Long): IO[Option[Wibble]] = ...
val a: IO[Option[Wibble]] = ...
5
votes
3answers
193 views
Map a single entry of a Map
I want to achieve something like the following:
(_ : Map[K,Int]).mapKey(k, _ + 1)
And the mapKey function applies its second argument (Int => Int) only to the value stored under k. Is there ...
5
votes
2answers
176 views
What's the relation of fold on Option, Either etc and fold on Traversable?
Scalaz provides a method named fold for various ADTs such as Boolean, Option[_], Validation[_, _], Either[_, _] etc. This method basically takes functions corresponding to all possible cases for that ...
5
votes
2answers
223 views
Trying to understand scalaz state monad
I'm trying to start using scalaz in my lift project. For that purpose I'm rewriting some code to meet the style. Consider a code for logging in a user:
def login: CssSel = {
var password = ""
...
5
votes
1answer
260 views
Scalaz's traverse_ with IO monad
I want to use IO monad.
But this code do not run with large file.
I am getting a StackOverflowError.
I tried the -DXss option, but it throws the same error.
val main = for {
l <- ...
5
votes
1answer
147 views
Using a view bounds with scalaz
I'm taking my first foray into scalaz by converting an existing class to use the Monoid trait. What I am trying to achieve is to set a view bound on my class type parameter to ensure that it can only ...
5
votes
1answer
145 views
Conditional invocation of a method in Scala
I've found this pattern quite a few times in my code:
if (doIt)
object.callAMethod
else
object
I'm wondering if there could be a syntactically more pleasing way to write the code above, ...
5
votes
1answer
109 views
How does Scalaz `F[_] : Applicative` type constraint imply use of implicit parameters?
I am struggling to understand the following function definition in Traverse trait in Scalaz:
def traverse[F[_] : Applicative, A, B](f: A => F[B], t: T[A]): F[T[B]]
The part I don't understand is ...
5
votes
3answers
156 views
Invoking a function on a “side” of a Bifunctor dependent on the value of a boolean
If I have an instance of Bifunctor[A,A] bf, a function f : A => A and a Boolean value p:
def calc[A, F[_,_]: Bifunctor](p: Boolean, bf: F[A, A], f: A => A): F[A, A] = {
val BF = ...
5
votes
1answer
165 views
Implicit parameter in Scalaz
I try to find out why the call ∅ in scalaz.ListW.<^> works
def <^>[B: Zero](f: NonEmptyList[A] => B): B = value match {
case Nil => ∅
case h :: t => f(Scalaz.nel(h, t))
}
...
4
votes
1answer
76 views
Scalaz Validation: aggregate errors or return any success
How is it possible to implement with scalaz such behaviour:
"Fail1".failNel[Int] and "Fail2".failNel[Int] to Failure("Fail1", "Fail2")
"Fail1".failNel[Int] and 100.successNel[String] to Success(100)
...