harness.cli.Indexed.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of harness-cli_sjs1_3 Show documentation
Show all versions of harness-cli_sjs1_3 Show documentation
Miscellaneous libraries/utilities for Scala.
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