This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.language.implicitConversions | |
import scala.language.postfixOps | |
sealed trait Permutation[+A] | |
case object Id extends Permutation[Nothing] | |
case class Mapping[A](mappings: Map[A, A]) extends Permutation[A] | |
object Permutation { | |
def id = Id |