如何使用类型别名来描述这种递归语法:
type FieldValue = Seq[String] :+: String :+: Int :+: Long :+: CNil
type FieldLeaf = FieldValue :+: SubField :+: CNil
type SubField = Seq[Field]
type Field = (String, FieldLeaf)
就目前而言,Scala 编译器 (2.12.1) 给了我:
Error:(14, 25) illegal cyclic reference involving type FieldLeaf
type Field = (String, FieldLeaf)
PS这里的上下文是用fastparse解析递归语法。
编辑(回应@OlivierBlanvillain 下面的回答)
这个答案真的很美,正是我在寻找的东西,我会记住它以备不时之需。
但是,由于其他原因,在这种特殊情况下,我不得不使用这些定义:
case class Field(name: String, leaf: FieldLeaf)
sealed trait FieldLeaf
sealed trait FieldValue extends FieldLeaf
case class StringsFieldValue(value: Seq[String]) extends FieldValue
case class StringFieldValue(value: String) extends FieldValue
case class IntFieldValue(value: Int) extends FieldValue
case class LongFieldValue(value: Long) extends FieldValue
case class SubField(value: Seq[Field]) extends FieldLeaf
另请参阅: 从递归类型语法中实例化类型