Packages

object Digit extends DigitInstances with Serializable

Source
Digit.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Digit
  2. Serializable
  3. Serializable
  4. DigitInstances
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit def DigitLong(d: Digit): Long
  2. def digitFromChar(c: Char): Option[Digit]
  3. def digitFromInt(i: Int): Option[Digit]
  4. def digitFromLong(i: Long): Option[Digit]
  5. implicit val digitInstances: Enum[Digit] with Show[Digit] with Monoid[Digit]
    Definition Classes
    DigitInstances
  6. def digits[F[_]](cs: F[Char])(implicit F: Functor[F]): OptionT[F, Digit]
  7. val digits: List[Digit]
  8. def digitsCollapse[F[_]](chars: F[Char])(implicit F: MonadPlus[F]): F[Digit]
  9. def digitsOr[F[_]](chars: F[Char], d: ⇒ Digit)(implicit F: Functor[F]): F[Digit]
  10. def longDigits[F[_]](digits: F[Digit])(implicit F: Foldable[F]): Long
  11. def mod10Digit(i: Int): Digit
  12. def traverseDigits[F[_]](chars: F[Char])(implicit F: Traverse[F]): Option[F[Digit]]
  13. def traverseDigitsOr[F[_]](chars: F[Char], d: ⇒ F[Digit])(implicit F: Traverse[F]): F[Digit]
  14. object _0 extends Digit with Product with Serializable
  15. object _1 extends Digit with Product with Serializable
  16. object _2 extends Digit with Product with Serializable
  17. object _3 extends Digit with Product with Serializable
  18. object _4 extends Digit with Product with Serializable
  19. object _5 extends Digit with Product with Serializable
  20. object _6 extends Digit with Product with Serializable
  21. object _7 extends Digit with Product with Serializable
  22. object _8 extends Digit with Product with Serializable
  23. object _9 extends Digit with Product with Serializable