progs/app7.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 21 Nov 2019 00:49:21 +0000
changeset 696 3a5a7908517f
parent 295 19f23c4c2167
permissions -rw-r--r--
added krakatau version and made the mandel program work

abstract class Parser[I, T] {
  def parse(ts: I): Set[(T, I)]

  def parse_all(ts: I) : Set[T] =
    for ((head, tail) <- parse(ts); 
         if (tail.isEmpty)) yield head
}