Questions tagged «cats-effect»

2
是否应该使用效果类型来建模有状态对象?
当使用像Scala和的功能环境时cats-effect,是否应该使用效果类型来建模有状态对象的构造? // not a value/case class class Service(s: name) def withoutEffect(name: String): Service = new Service(name) def withEffect[F: Sync](name: String): F[Service] = F.delay { new Service(name) } 构造不是容易犯错的,因此我们可以使用较弱的typeclass,例如Apply。 // never throws def withWeakEffect[F: Applicative](name: String): F[Service] = new Service(name).pure[F] 我想所有这些都是纯粹的和确定性的。只是不是参照透明的,因为每次生成的实例都是不同的。那是使用效果类型的好时机吗?还是这里会有不同的功能模式?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.