refined4s.RefinedCtor.scala Maven / Gradle / Ivy
package refined4s
/** @author Kevin Lee
* @since 2023-12-05
*/
trait RefinedCtor[T, A] {
def create(a: A): Either[String, T]
}
object RefinedCtor {
def apply[T, A](using refinedCtor: RefinedCtor[T, A]): RefinedCtor[T, A] = refinedCtor
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy