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

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

There is a newer version: 0.2.5
Show newest version
package io.github.arainko.ducktape.internal

private[ducktape] opaque type Depth <: Int = Int

private[ducktape] object Depth {
  val zero: Depth = 0

  def current(using depth: Depth): Depth = depth

  extension (self: Depth) {
    def incremented: Depth = self + 1
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy