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

verfi_2.10.0.1.3.source-code.normalizing.scala Maven / Gradle / Ivy

The newest version!
package semverfi

/**
 * Provides a means to render a normal
 * version from a preprelease version
 */
trait Normalizing { self: Valid =>
  def normalize = self match {
    case n: NormalVersion => n
    case v: Valid =>
      NormalVersion(v.major, v.minor, v.patch)
    case invalid => invalid
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy