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

harness.cli.Indexed.scala Maven / Gradle / Ivy

There is a newer version: 5.1.3
Show newest version
package harness.cli

final case class Indexed[+V](value: V, idx: Int) {
  def map[V2](f: V => V2): Indexed[V2] = Indexed(f(value), idx)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy