Packages

trait StringOps[F[_], E] extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. implicit abstract val alg: StrictApplicativeAlgebra[F, E]

Concrete Value Members

  1. def blank: Validator[F, String, String]
  2. def endsWith(prefix: String): Validator[F, String, String]
  3. def isFalse: Validator[F, Boolean, Boolean]
  4. def isIn[T](set: Set[T], prefix: String): Validator[F, T, T]
  5. def isTrue: Validator[F, Boolean, Boolean]
  6. def matchRegex(regex: Regex, partial: Boolean = true): Validator[F, String, String]
  7. def matchRegexPattern(pattern: Pattern, partialMatchAllowed: Boolean = true): Validator[F, String, String]
  8. def matchRegexString(regex: String, partial: Boolean = true): Validator[F, String, String]
  9. def maxLength(len: Int): Validator[F, String, String]
  10. def notBlank: Validator[F, String, String]
  11. def startsWith(prefix: String): Validator[F, String, String]