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