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

behaviors.serialization.Serialization.scala Maven / Gradle / Ivy

Go to download

Scala library for card-playing functionality, including games Blackjack and Thirty-One

The newest version!
package cards.behaviors.serialization

trait Serialization[A] {
  def parse(json: String): Either[String, Seq[A]]
  def json(items: Seq[A]): String
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy