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

it.unibo.utils.Interop.scala Maven / Gradle / Ivy

The newest version!
package it.unibo.utils

trait Interop[T] {
  def toString(data: T): String
  def fromString(s: String): T
}

trait LinearizableTo[T,N] {
  def toNum(v: T): N
  def fromNum(n: N): T
}

trait Linearizable[T] extends LinearizableTo[T,Int]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy