class SepBy[T, E] extends Parsec[List[T], E]

sepBy p sep parses zero or more occurrences of p, separated by sep. Returns a list of values returned by p.

Version

1.0.0

Since

2020/05/09 16:55

Linear Supertypes
Parsec[List[T], E], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SepBy
  2. Parsec
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SepBy(parsec: Parsec[T, E], by: Parsec[_, E])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: scala.Int
    Definition Classes
    AnyRef → Any
  3. def <?>(message: String): Parsec[List[T], E]
    Definition Classes
    Parsec
  4. def <|>(parsec: Parsec[List[T], E]): Parsec[List[T], E]
    Definition Classes
    Parsec
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >>[O](p: Parsec[O, E]): Parsec[O, E]
    Definition Classes
    Parsec
  7. def >>=[O](binder: (List[T]) => Parsec[O, E]): Parsec[O, E]
    Definition Classes
    Parsec
  8. def ?[S <: State[E]](s: S): Either[Exception, List[T]]
    Definition Classes
    Parsec
  9. def apply[S <: State[E]](s: S): List[T]
    Definition Classes
    SepByParsec
    Annotations
    @throws(scala.this.throws.<init>$default$1[java.io.EOFException]) @throws(scala.this.throws.<init>$default$1[jaskell.parsec.ParsecException])
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. val b: Try[_, E]
  12. val by: Parsec[_, E]
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  14. def either[S <: State[E]](s: S): Either[Exception, List[T]]
    Definition Classes
    Parsec
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def hashCode(): scala.Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def opt[S <: State[E]](s: S): Option[List[T]]
    Definition Classes
    Parsec
  24. val p: Try[T, E]
  25. val parsec: Parsec[T, E]
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: scala.Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Parsec[List[T], E]

Inherited from AnyRef

Inherited from Any

Ungrouped