이 블로그 에서이 코드를 볼 수 있습니다 : Scala의 Type-Level Programming :
// define the abstract types and bounds
trait Recurse {
type Next <: Recurse
// this is the recursive function definition
type X[R <: Recurse] <: Int
}
// implementation
trait RecurseA extends Recurse {
type Next = RecurseA
// this is the implementation
type X[R <: Recurse] = R#X[R#Next]
}
object Recurse {
// infinite loop
type C = RecurseA#X[RecurseA]
}
내가 본 적이없는 #
코드에 연산자 가 R#X[R#Next]
있습니다. 검색 엔진이 무시하기 때문에 검색하기가 어렵 기 때문에 누가 무슨 뜻인지 알 수 있습니까?