- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Scala 中,我需要创建一个代表复合值的产品类型 &
,例如:
val and: String & Int & User & ... = ???
即和
内部应该有一个String
部分和一个Int
部分以及一个User
部分。这类似于 Scala with
关键字:
val and: String with Int with User with ... = ???
拥有这样的产品类型,我需要一种方法,拥有一个函数A => A
,将其应用于某些产品值,并通过更改A
部分返回该产品。这意味着产品中的每种类型都必须是唯一的 - 这是可以接受的。
一个重要的限制是,当将函数A => A
应用于产品时,我只知道该产品内部有A
,但没有其他信息它包含的类型。但作为函数的调用者,我向它传递了一个包含完整类型信息的产品,并希望将这个完整类型作为函数签名的一部分返回。
在伪代码中:
def update[A, Rest](product: A & Rest, f: A => A): A & Rest
使用Shapeless或其他深奥的东西对我来说是可以的。我尝试使用 HList
,但它们是有序的,而类似异构集的东西在这里更适合代表 A & Rest
部分。
更新:
这是解决我的用例的代码,该代码取自下面的 Régis Jean-Gilles 答案,添加了阅读支持、一些注释和改进的类型安全性:
object product {
/** Product of `left` and `right` values. */
case class &[L, R](left: L, right: R)
implicit class AndPimp[L](val left: L) extends AnyVal {
/** Make a product of `this` (as left) and `right`. */
def &[R](right: R): L & R = new &(left, right)
}
/* Updater. */
/** Product updater able to update value of type `A`. */
trait ProductUpdater[P, A] {
/** Update product value of type `A`.
* @return updated product */
def update(product: P, f: A ⇒ A): P
}
trait LowPriorityProductUpdater {
/** Non-product value updater. */
implicit def valueUpdater[A]: ProductUpdater[A, A] = new ProductUpdater[A, A] {
override def update(product: A, f: A ⇒ A): A = f(product)
}
}
object ProductUpdater extends LowPriorityProductUpdater {
/** Left-biased product value updater. */
implicit def leftProductUpdater[L, R, A](implicit leftUpdater: ProductUpdater[L, A]): ProductUpdater[L & R, A] =
new ProductUpdater[L & R, A] {
override def update(product: L & R, f: A ⇒ A): L & R =
leftUpdater.update(product.left, f) & product.right
}
/** Right-biased product value updater. */
implicit def rightProductUpdater[L, R, A](implicit rightUpdater: ProductUpdater[R, A]): ProductUpdater[L & R, A] =
new ProductUpdater[L & R, A] {
override def update(product: L & R, f: A ⇒ A): L & R =
product.left & rightUpdater.update(product.right, f)
}
}
/** Update product value of type `A` with function `f`.
* Won't compile if product contains multiple `A` values.
* @return updated product */
def update[P, A](product: P)(f: A ⇒ A)(implicit updater: ProductUpdater[P, A]): P =
updater.update(product, f)
/* Reader. */
/** Product reader able to read value of type `A`. */
trait ProductReader[P, A] {
/** Read product value of type `A`. */
def read(product: P): A
}
trait LowPriorityProductReader {
/** Non-product value reader. */
implicit def valueReader[A]: ProductReader[A, A] = new ProductReader[A, A] {
override def read(product: A): A = product
}
}
object ProductReader extends LowPriorityProductReader {
/** Left-biased product value reader. */
implicit def leftProductReader[L, R, A](implicit leftReader: ProductReader[L, A]): ProductReader[L & R, A] =
new ProductReader[L & R, A] {
override def read(product: L & R): A =
leftReader.read(product.left)
}
/** Right-biased product value reader. */
implicit def rightProductReader[L, R, A](implicit rightReader: ProductReader[R, A]): ProductReader[L & R, A] =
new ProductReader[L & R, A] {
override def read(product: L & R): A =
rightReader.read(product.right)
}
}
/** Read product value of type `A`.
* Won't compile if product contains multiple `A` values.
* @return value of type `A` */
def read[P, A](product: P)(implicit productReader: ProductReader[P, A]): A =
productReader.read(product)
// let's test it
val p = 1 & 2.0 & "three"
read[Int & Double & String, Int](p) // 1
read[Int & Double & String, Double](p) // 2.0
read[Int & Double & String, String](p) // three
update[Int & Double & String, Int](p)(_ * 2) // 2 & 2.0 & three
update[Int & Double & String, Double](p)(_ * 2) // 1 & 4.0 & three
update[Int & Double & String, String](p)(_ * 2) // 1 & 2.0 & threethree
}
最佳答案
这是一个仅使用纯 scala 的解决方案,不需要任何库。它依赖于使用相当标准方法的类型类:
scala> :paste
// Entering paste mode (ctrl-D to finish)
case class &[L,R](left: L, right: R)
implicit class AndOp[L](val left: L) {
def &[R](right: R): L & R = new &(left, right)
}
trait ProductUpdater[P,A] {
def apply(p: P, f: A => A): P
}
trait LowPriorityProductUpdater {
implicit def noopValueUpdater[P,A]: ProductUpdater[P,A] = {
new ProductUpdater[P,A] {
def apply(p: P, f: A => A): P = p // keep as is
}
}
}
object ProductUpdater extends LowPriorityProductUpdater {
implicit def simpleValueUpdater[A]: ProductUpdater[A,A] = {
new ProductUpdater[A,A] {
def apply(p: A, f: A => A): A = f(p)
}
}
implicit def productUpdater[L, R, A](
implicit leftUpdater: ProductUpdater[L, A], rightUpdater: ProductUpdater[R, A]
): ProductUpdater[L & R, A] = {
new ProductUpdater[L & R, A] {
def apply(p: L & R, f: A => A): L & R = &(leftUpdater(p.left, f), rightUpdater(p.right, f))
}
}
}
def update[A,P](product: P)(f: A => A)(implicit updater: ProductUpdater[P,A]): P = updater(product, f)
// Exiting paste mode, now interpreting.
让我们测试一下:
scala> case class User(name: String, age: Int)
defined class User
scala> val p: String & Int & User & String = "hello" & 123 & User("Elwood", 25) & "bye"
p: &[&[&[String,Int],User],String] = &(&(&(hello,123),User(Elwood,25)),bye)
scala> update(p){ i: Int => i + 1 }
res0: &[&[&[String,Int],User],String] = &(&(&(hello,124),User(Elwood,25)),bye)
scala> update(p){ s: String => s.toUpperCase }
res1: &[&[&[String,Int],User],String] = &(&(&(HELLO,123),User(Elwood,25)),BYE)
scala> update(p){ user: User =>
| user.copy(name = user.name.toUpperCase, age = user.age*2)
| }
res2: &[&[&[String,Int],User],String] = &(&(&(hello,123),User(ELWOOD,50)),bye)
<小时/>
更新:回应:
Is it possible to make this not compile when a product doesn't contain a value to update
是的,这绝对是可能的。我们可以更改 ProductUpdater
类型类,但在这种情况下,我发现引入一个单独的类型类 ProductContainsType
作为给定产品 P
的证据要容易得多code> 至少包含一个 A
类型的元素:
scala> :paste
// Entering paste mode (ctrl-D to finish)
@annotation.implicitNotFound("Product ${P} does not contain type ${A}")
abstract sealed class ProductContainsType[P,A]
trait LowPriorityProductContainsType {
implicit def compositeProductContainsTypeInRightPart[L, R, A](
implicit rightContainsType: ProductContainsType[R, A]
): ProductContainsType[L & R, A] = null
}
object ProductContainsType extends LowPriorityProductContainsType {
implicit def simpleProductContainsType[A]: ProductContainsType[A,A] = null
implicit def compositeProductContainsTypeInLeftPart[L, R, A](
implicit leftContainsType: ProductContainsType[L, A]
): ProductContainsType[L & R, A] = null
}
// Exiting paste mode, now interpreting.
现在我们可以定义更严格的update
方法:
def strictUpdate[A,P](product: P)(f: A => A)(
implicit
updater: ProductUpdater[P,A],
containsType: ProductContainsType[P,A]
): P = updater(product, f)
让我们看看:
scala> strictUpdate(p){ s: String => s.toUpperCase }
res21: &[&[&[String,Int],User],String] = &(&(&(HELLO,123),User(Elwood,25)),BYE)
scala> strictUpdate(p){ s: Symbol => Symbol(s.name.toUpperCase) }
<console>:19: error: Product &[&[&[String,Int],User],String] does not contain type Symbol
strictUpdate(p){ s: Symbol => Symbol(s.name.toUpperCase) }
关于scala - 在 Scala 中实现产品类型,并在其各个部分上使用通用更新功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33541107/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!