scalaz 7相当于来自scalaz 6的`< | * |>`

时间:2015-10-07 16:22:02

标签: scala scalaz scalaz7

Nick Partridge's presentation on deriving scalaz中,基于旧版本的scalaz,他使用函数引入了验证:

def even(x: Int): Validation[NonEmptyList[String], Int] =
  if (x % 2 == 0) x.success else { s"not even: $x".wrapNel.failure }

然后他使用

组合了这个
even(1) <|*|> even(2)

应用测试并返回带有失败消息的验证。使用scalaz 7我得到

scala> even(1) <|*|> even(2)
<console>:18: error: value <|*|> is not a member of scalaz.Validation[scalaz.NonEmptyList[String],Int]
       even(1) <|*|> even(2)
               ^

这个组合子的scalaz 7等价物是什么?

2 个答案:

答案 0 :(得分:5)

现在称为tuple,因此您可以编写例如:

import scalaz._, Scalaz._

def even(x: Int): Validation[NonEmptyList[String], Int] =
  if (x % 2 == 0) x.success else s"not even: $x".failureNel

val pair: ValidationNel[String, (Int, Int)] = even(1) tuple even(2)

不幸的是,我不确定是否有更好的方法来查找此类内容,而不是查看源代码的最后一个6.0代码,搜索,然后比较签名。

答案 1 :(得分:-1)

您想使用|@|运算符。

scala> (even(1) |@| even(2) |@| even(3)) { (_,_,_) }
<console> Failure(NonEmptyList(not even: 1, not even: 3))

scala> (even(2) |@| even(4) |@| even(6)) { (_,_,_) }
<console> Success((2,4,6))

将其与tuple运算符进行比较:

scala> even(1) tuple even(2) tuple even(3)
<console> Failure(NonEmptyList(not even: 1, not even: 3))

scala> even(2) tuple even(4) tuple even(6)
<console> Success(((2,4),6))