bug608.scala

来自「JAVA 语言的函数式编程扩展」· SCALA 代码 · 共 18 行

SCALA
18
字号
trait CrashDueToTypeError {	def id[a](x :a) :a = x	trait Bifunctor {		type a; //	 content 		type s <: Bifunctor		// uncomment        this-vvvvvvvvvvvvvvvvvvvvvvvvvvvv, and it compiles 		def bimap[c](f :a=>c) :s{/*type s=Bifunctor.this.s;*/type a=c; }	}	def hylo[hs <: Bifunctor,ha,hb,hc]	    (f :hb=>hs{type s=hs; type a=ha}, 	     g :hs{type s=hs; type a=ha}=>hc)(x :hb) 	     :hc 	     = g(f(x).bimap(id))}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?