5 lines
88 B
Scala
5 lines
88 B
Scala
|
|
trait DFA {
|
||
|
|
type Element
|
||
|
|
val map = new collection.mutable.HashMap[Element, DFA]()
|
||
|
|
}
|