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

eu.throup.couldbe.MustBeGivenOneOf1.scala Maven / Gradle / Ivy

package eu.throup
package couldbe

sealed trait MustBeGivenOneOf1[+A] {
  def _1: A
}

case class IsGiven1Of1[+A](a: A) extends MustBeGivenOneOf1[A] {
  override def _1: A = a
}

object MustBeGivenOneOf1 extends MustBeGivenOneOf1Companion




© 2015 - 2025 Weber Informatics LLC | Privacy Policy