All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nicopolyptic.state.Interpretation.scala Maven / Gradle / Ivy

The newest version!
/**
  *
  *     _   ___                        __            __  _
  *    / | / (_)________  ____  ____  / /_  ______  / /_(_)____
  *   /  |/ / / ___/ __ \/ __ \/ __ \/ / / / / __ \/ __/ / ___/
  *  / /|  / / /__/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /__
  * /_/ |_/_/\___/\____/ .___/\____/_/\__, / .___/\__/_/\___/
  *                   /_/            /____/_/
  *
  **/

package com.nicopolyptic.state

trait Interpretation[X, Y] {
  def matches(x: X, y: Y) : Boolean = x.equals(y)
  val wildcard : X
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy