gpt4 book ai didi

scala - 类型参数子句中的广义约束?

转载 作者:行者123 更新时间:2023-12-02 07:57:56 25 4
gpt4 key购买 nike

SLS 指定 type parameter clause 的语法作为

TypeParamClause   ::=  ‘[’ VariantTypeParam {‘,’ VariantTypeParam} ‘]’
FunTypeParamClause::= ‘[’ TypeParam {‘,’ TypeParam} ‘]’
VariantTypeParam ::= {Annotation} [‘+’ | ‘-’] TypeParam
TypeParam ::= (id | ‘_’) [TypeParamClause] [‘>:’ Type] [‘<:’ Type] {‘<%’ Type} {‘:’ Type} {‘<%’ Type} {‘<%’ Type}

我们在哪里看到 >: , <: , <% , <% , :作为类型参数子句中允许的保留名称。有没有办法我们可以使用 generalised type constraint符号名称 <:< , =:=在类型参数子句中这样

def f[T =:= 42] = ???

会扩展到

def f[T](implicit ev: T =:= 42) = ???

类似于上下文绑定(bind)的方式

def f[T: Numeric] = ???

扩展为

def f[T](implicit ev: Numeric[T]) = ???

最佳答案

在 2.13 中(它支持单例类型,如果你对单例的约束感到好奇的话)你可以做这样的事情:

@ import $plugin.$ivy.`org.typelevel:kind-projector_2.13.1:0.11.0`
import $plugin.

@ type a = 23
defined type a

@ def f[N : * =:= a]: Unit = ()
defined function f

@ f[a]


@ f[23]


@ f[25]
cmd9.sc:1: Cannot prove that 25 =:= Int(23).
val res9 = f[25]
^
Compilation Failed

@ def g[N : * =:= 16]: Unit = ()
defined function g

@ g[16]


@ g[23]
cmd11.sc:1: Cannot prove that 23 =:= 16.
val res11 = g[23]
^
Compilation Failed

所以,是的,这似乎是可能的。您只需使用 kind projectors 来应用第二个参数。

<:<应该是同一个故事:

@ def h[N : * <:< 16]: Unit = ()
defined function h

@ h[16]


@ h[17]
cmd13.sc:1: Cannot prove that 17 <:< 16.
val res13 = h[17]
^
Compilation Failed

关于scala - 类型参数子句中的广义约束?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61045368/

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