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

io.github.arainko.ducktape.internal.Side.scala Maven / Gradle / Ivy

The newest version!
package io.github.arainko.ducktape.internal

private[ducktape] enum Side derives Debug {
  case Source, Dest

  final def isSource: Boolean =
    this match {
      case Source => true
      case Dest   => false
    }

  final def isDest: Boolean = !isSource
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy