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] = ValidReader[Map[String,String],X]

and I have two functions creating map-readers for ints and strings (*):

def readInt( k: String ): MapReader[Int] = ...
def readString( k: String ): MapReader[String] = ...

Given the following map:

val data = Map( "name" -> "Paul", "age" -> "8" )

I can write two readers to retrieve the name and age:

val name = readString( "name" )
val age = readInt( "age" )

println( name(data) ) //=> Success("Paul")
println( age(data) )  //=> Success(8)

Everything works fine, but now I want to compose both readers to build a Boy instance:

case class Boy( name: String, age: Int )

My best take is:

  val boy = ( name |@| age ) {
    (n,a) => ( n |@| a ) { Boy(_,_) }
  }
  println( boy(data) ) //=> Success(Boy(Paul,8))

It works as expected, but the expression is awkward with two levels of applicative builders. Is there a way, to get the following syntax to work ?

  val boy = ( name |@| age ) { Boy(_,_) }

(*) Full and runnable implementation in: https://gist.github.com/1891147


Update: Here is the compiler error message that I get when trying the line above or Daniel suggestion:

[error] ***/MapReader.scala:114: type mismatch;
[error]  found   : scalaz.Validation[scalaz.NonEmptyList[String],String]
[error]  required: String
[error]   val boy = ( name |@| age ) { Boy(_,_) }
[error]                                    ^
link|improve this question

I'll post an answer later, but as a hint, remember that Applicative[G] and Applicative[F] implies Applicative[[x]F[G[x]]. In scalaz 7, Applicative#compose witnesses this fact. Work directly with the type classes to begin with, rather than using the |@| syntax. – retronym Feb 23 at 7:58
Thanks, but I still don't get it, so I'll wait for your answer. Note that I am using scalaz 6 (question updated). – paradigmatic Feb 23 at 8:05
@paradigmatic Have you tried using apply explicitly? Like ( name |@| age) apply { Boy(_, _) }? – Daniel C. Sobral Feb 23 at 13:59
@DanielC.Sobral Yes, it doesn't work either (I get the same compile error). – paradigmatic Feb 23 at 14:59
@paradigmatic What error? – Daniel C. Sobral Feb 23 at 15:25
show 1 more comment
feedback

1 Answer

up vote 2 down vote accepted

How about this?

val boy = (name |@| age) {
  (Boy.apply _).lift[({type V[X]=ValidationNEL[String,X]})#V]
}

or using a type alias:

type VNELStr[X] = ValidationNEL[String,X]

val boy = (name |@| age) apply (Boy(_, _)).lift[VNELStr]

This is based on the following error message at the console:

scala> name |@| age apply Boy.apply
<console>:22: error: type mismatch;
 found   : (String, Int) => MapReader.Boy
 required: (scalaz.Validation[scalaz.NonEmptyList[String],String], 
            scalaz.Validation[scalaz.NonEmptyList[String],Int]) => ?

So I just lifted Boy.apply to take the required type.

link|improve this answer
Thanks. I did not think about lifting. However, I'm not sure that the lambda type soup is more readable than using two applicative builders in cascade. You know if there is a way to have the constructor lifted through implicit conversions ? – paradigmatic Feb 24 at 5:37
@paradigmatic, I think a type alias makes it the most readable. Also I prefer it to an hypothetical implicit conversion for two reasons: (1) it tells me the type of the (Boy(_, _)).lift[VNELStr] lambda - I couldn't figure out the type in your version. (2) for the same reason I don't want to implicitly change Int to Option[Int] I think implicitly converting the lampda takes away from using the type system. – huynhjl Feb 24 at 15:22
@huynjl I like the type alias and I see your point. Thanks. – paradigmatic Feb 24 at 18:03
feedback

Your Answer

 
or
required, but never shown

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