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

org.plasmalabs.common.ParsableDataInterface.scala Maven / Gradle / Ivy

package org.plasmalabs.common

import org.plasmalabs.quivr.models.Data

trait ParsableDataInterface {
  val data: Data
  def parse[E, T](f: Data => Either[E, T]): Either[E, T] = f(data)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy