gpt4 book ai didi

Scala-Cats 已验证 : value mapN is not a member of ValidatedNel tuple

转载 作者:行者123 更新时间:2023-12-03 23:43:38 35 4
gpt4 key购买 nike

斯卡拉社区。

目前我正在尝试使用猫实现自定义模型/单参数验证 Validated单子(monad)。但是,自 1.0 以来删除笛卡尔积后,我无法使用 (v1 |@| v2) 映射 (f) 并且无法编译我的代码:

import cats.Semigroupal
import cats.data.Validated.{Invalid, Valid}
import cats.data.{ValidatedNel, _}
import cats.implicits._
import cats.instances.all._

case class FieldErrorInfo(name: String, error: String)

type FieldName = String

type ValidationResult[A] = ValidatedNel[FieldErrorInfo, A]

trait SingleFieldValidationRule[U] extends ((U, FieldName) => ValidationResult[U])

trait ModelValidationRule[M] extends (M => ValidationResult[M])

object ValidateNameRule extends SingleFieldValidationRule[String] {
override def apply(v1: String, name: String): ValidationResult[String] = {
if (v1.contains("cats"))
v1.validNel
else
FieldErrorInfo(name, "Some Error").invalidNel
}
}

object ValidateQuantityRule extends SingleFieldValidationRule[Int] {
override def apply(v1: Int, name: String): ValidationResult[Int] =
if (v1 > 0)
v1.validNel
else FieldErrorInfo(name, "Some Error").invalidNel
}

case class SampleModel(name: String, quantity: Int)

object ValidateSampleModel extends ModelValidationRule[SampleModel] {
override def apply(v1: SampleModel): ValidationResult[SampleModel] = {
val stage1: ValidatedNel[FieldErrorInfo, String] = ValidateNameRule(v1.name, "name")
val stage2: ValidatedNel[FieldErrorInfo, Int] = ValidateQuantityRule(v1.quantity, "quantity")

implicit val sga: Semigroupal[NonEmptyList] = new Semigroupal[NonEmptyList] {
override def product[A, B](fa: NonEmptyList[A], fb: NonEmptyList[B]): NonEmptyList[(A, B)] = fa.flatMap(a => fb.map(b => a -> b))
}

(stage1, stage2).mapN(SampleModel)
}
}

编译器说,
Error:(43, 23) value mapN is not a member of (cats.data.ValidatedNel[FieldErrorInfo,String], cats.data.ValidatedNel[FieldErrorInfo,Int])
(stage1, stage2).mapN(SampleModel)
^

请指出我如何使用新的 Applicative 语法或我做错了什么......(忘记创建/导入一些隐式)

最佳答案

您似乎缺少以下导入:

import cats.syntax.apply._

对于 mapN .

请确保您拥有 -Ypartial-unification编译器标志已激活,否则编译器将难以提取 ValidatedNel[FieldErrorInfo, ?]来自 stage1 的类型和 stage2 :
libraryDependencies += "org.typelevel" %% "cats-core" % "1.1.0"
scalaVersion := "2.12.5"
scalacOptions += "-Ypartial-unification"

使用上述设置,以下工作:
import cats.Semigroupal
import cats.data.Validated.{Invalid, Valid}
import cats.data.ValidatedNel
import cats.data.NonEmptyList
import cats.syntax.apply._ // for `mapN`
import cats.syntax.validated._ // for `validNel`

case class FieldErrorInfo(name: String, error: String)

type FieldName = String

type ValidationResult[A] = ValidatedNel[FieldErrorInfo, A]

trait SingleFieldValidationRule[U] extends ((U, FieldName) => ValidationResult[U])

trait ModelValidationRule[M] extends (M => ValidationResult[M])

object ValidateNameRule extends SingleFieldValidationRule[String] {
override def apply(v1: String, name: String): ValidationResult[String] = {
if (v1.contains("cats"))
v1.validNel
else
FieldErrorInfo(name, "Some Error").invalidNel
}
}

object ValidateQuantityRule extends SingleFieldValidationRule[Int] {
override def apply(v1: Int, name: String): ValidationResult[Int] =
if (v1 > 0)
v1.validNel
else FieldErrorInfo(name, "Some Error").invalidNel
}

case class SampleModel(name: String, quantity: Int)

object ValidateSampleModel extends ModelValidationRule[SampleModel] {
override def apply(v1: SampleModel): ValidationResult[SampleModel] = {
val stage1: ValidatedNel[FieldErrorInfo, String] = ValidateNameRule(v1.name, "name")
val stage2: ValidatedNel[FieldErrorInfo, Int] = ValidateQuantityRule(v1.quantity, "quantity")

implicit val sga: Semigroupal[NonEmptyList] = new Semigroupal[NonEmptyList] {
override def product[A, B](fa: NonEmptyList[A], fb: NonEmptyList[B]): NonEmptyList[(A, B)] = fa.flatMap(a => fb.map(b => a -> b))
}


(stage1, stage2).mapN(SampleModel)
}
}

关于Scala-Cats 已验证 : value mapN is not a member of ValidatedNel tuple,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49865936/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com