p

semver4s

package semver4s

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. semver4s
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class And(v1: Matcher, v2: Matcher) extends Matcher with Product with Serializable
  2. sealed trait Bound extends AnyRef
  3. sealed trait Bounded extends Bound
  4. case class CoreVersion(major: Long, minor: Long, patch: Long) extends Product with Serializable
  5. case class Exact(v: Version) extends Matcher with Product with Serializable
  6. case class Exclusive(by: Version) extends Bounded with Product with Serializable
  7. case class GT(v: Version) extends Matcher with Product with Serializable
  8. case class Inclusive(by: Version) extends Bounded with Product with Serializable
  9. case class LT(v: Version) extends Matcher with Product with Serializable
  10. sealed trait Matcher extends AnyRef
  11. case class Or(v1: Matcher, v2: Matcher) extends Matcher with Product with Serializable
  12. case class Version(major: Long, minor: Long, patch: Long, pre: Option[PreReleaseSuffix], build: Option[String]) extends Product with Serializable

Value Members

  1. def matcher(src: String): Either[Error, Matcher]
  2. val semVer: Parser[Version]
  3. val semVerMatcher: Parser0[Matcher]
  4. def version(src: String): Either[Error, Version]
  5. case object Always extends Matcher with Product with Serializable
  6. object Matcher
  7. object RangeParsers
  8. object SemVer
  9. object SemverParsers
  10. case object Unbounded extends Bound with Product with Serializable
  11. object Version extends Serializable
  12. object VersionOrder

Inherited from AnyRef

Inherited from Any

Ungrouped