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

io.github.pidoveproject.showdown.decoder.scala Maven / Gradle / Ivy

The newest version!
package io.github.pidoveproject.showdown

import io.github.pidoveproject.showdown.protocol.{MessageDecoder, ProtocolError}

given challStrDecoder: MessageDecoder[ChallStr] =
  MessageDecoder.string
    .repeatUntilEnd
    .mapEither(list => ChallStr.either(list.mkString("|")).left.map(x => ProtocolError.InvalidInput(x, "Invalid Challstr")))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy