org.json4s.scalap.scalasig

ScalaSigParsers

object ScalaSigParsers extends RulesWithState with MemoisableRules

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ScalaSigParsers
  2. MemoisableRules
  3. RulesWithState
  4. StateRules
  5. Rules
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class DefaultRule[In, Out, A, X] extends Rule[In, Out, A, X]

    Definition Classes
    Rules
  2. trait FromRule[In] extends AnyRef

    Definition Classes
    Rules
  3. type Parser[A] = scalap.Rule[S, S, A, String]

  4. type Rule[+A, +X] = scalap.Rule[S, S, A, X]

    Definition Classes
    StateRules
  5. type S = ScalaSig

    Definition Classes
    ScalaSigParsersStateRules

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def allEntries[A](f: EntryParser[A]): scalap.Rule[S, S, List[A], String]

  7. def allOf[A, X](rules: Seq[Rule[A, X]]): (S) ⇒ Result[S, List[A], X]

    Create a rule that succeeds if all of the given rules succeed.

    Create a rule that succeeds if all of the given rules succeed.

    rules

    the rules to apply in sequence.

    Definition Classes
    StateRules
  8. def anyOf[A, X](rules: Seq[Rule[A, X]]): scalap.Rule[S, S, List[A], X]

    Create a rule that succeeds with a list of all the provided rules that succeed.

    Create a rule that succeeds with a list of all the provided rules that succeed.

    rules

    the rules to apply in sequence.

    Definition Classes
    StateRules
  9. def apply[A, X](f: (S) ⇒ Result[S, A, X]): scalap.Rule[S, S, A, X]

    Definition Classes
    StateRules
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. lazy val attributes: scalap.Rule[S, S, List[AttributeInfo], String] with Name

  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def cond(f: (S) ⇒ Boolean): scalap.Rule[S, S, S, Nothing]

    Create a rule that identities if f(in) is true.

    Create a rule that identities if f(in) is true.

    Definition Classes
    StateRules
  14. lazy val entries: scalap.Rule[S, S, List[Any], String] with Name

  15. def entry(index: Int): scalap.Rule[S, Entry, Int, Nothing]

  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. def error[X](err: X): scalap.Rule[Any, Nothing, Nothing, X]

    Definition Classes
    Rules
  19. def error[In]: scalap.Rule[In, Nothing, Nothing, In]

    Definition Classes
    Rules
  20. def expect[In, Out, A, Any](rule: scalap.Rule[In, Out, A, Any]): (In) ⇒ A

    Converts a rule into a function that throws an Exception on failure.

    Converts a rule into a function that throws an Exception on failure.

    Definition Classes
    Rules
  21. val factory: RulesWithState

    Definition Classes
    RulesWithStateStateRules
  22. def failure: scalap.Rule[Any, Nothing, Nothing, Nothing]

    Definition Classes
    Rules
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def from[In]: FromRule[In]

    Definition Classes
    Rules
  25. def get: scalap.Rule[S, S, S, Nothing]

    Definition Classes
    StateRules
  26. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. implicit def inRule[In, Out, A, X](rule: scalap.Rule[In, Out, A, X]): InRule[In, Out, A, X]

    Definition Classes
    Rules
  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. def memo[In <: Memoisable, Out, A, X](key: AnyRef)(toRule: ⇒ (In) ⇒ Result[Out, A, X]): scalap.Rule[In, Out, A, X]

    Definition Classes
    MemoisableRules
  31. lazy val methods: scalap.Rule[S, S, List[MethodSymbol], String] with Name

  32. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  33. def nil: scalap.Rule[S, S, Nil.type, Nothing]

    Definition Classes
    StateRules
  34. def none: scalap.Rule[S, S, None.type, Nothing]

    Definition Classes
    StateRules
  35. final def notify(): Unit

    Definition Classes
    AnyRef
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def oneOf[In, Out, A, X](rules: scalap.Rule[In, Out, A, X]*): scalap.Rule[In, Out, A, X]

    Definition Classes
    Rules
  38. def parseEntry[A](parser: EntryParser[A])(index: Int): Parser[A]

  39. def read[A](f: (S) ⇒ A): scalap.Rule[S, S, A, Nothing]

    Definition Classes
    StateRules
  40. def repeatUntil[T, X](rule: Rule[(T) ⇒ T, X])(finished: (T) ⇒ Boolean)(initial: T): scalap.Rule[S, S, T, X]

    Repeatedly apply a rule from initial value until finished condition is met.

    Repeatedly apply a rule from initial value until finished condition is met.

    Definition Classes
    StateRules
  41. implicit def rule[In, Out, A, X](f: (In) ⇒ Result[Out, A, X]): scalap.Rule[In, Out, A, X]

    Definition Classes
    Rules
  42. def ruleWithName[In, Out, A, X](name: String, f: (In) ⇒ Result[Out, A, X]): scalap.Rule[In, Out, A, X] with Name

    Definition Classes
    MemoisableRulesRules
  43. implicit def seqRule[In, A, X](rule: scalap.Rule[In, In, A, X]): SeqRule[In, A, X]

    Definition Classes
    Rules
  44. def set(s: ⇒ S): scalap.Rule[S, S, S, Nothing]

    Definition Classes
    StateRules
  45. val size: scalap.Rule[S, S, Int, Nothing]

  46. def state[s]: StateRules { type S = s }

    Definition Classes
    Rules
  47. def success[Out, A](out: Out, a: A): scalap.Rule[Any, Out, A, Nothing]

    Definition Classes
    Rules
  48. val symTab: scalap.Rule[S, S, Seq[~[Int, ByteCode]], Nothing]

  49. lazy val symbols: scalap.Rule[S, S, List[Symbol], String] with Name

  50. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  51. def toString(): String

    Definition Classes
    AnyRef → Any
  52. lazy val topLevelClasses: scalap.Rule[S, S, List[ClassSymbol], String]

  53. lazy val topLevelObjects: scalap.Rule[S, S, List[ObjectSymbol], String]

  54. def unit[A](a: ⇒ A): scalap.Rule[S, S, A, Nothing]

    Definition Classes
    StateRules
  55. def update(f: (S) ⇒ S): scalap.Rule[S, S, S, Nothing]

    Definition Classes
    StateRules
  56. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  57. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  58. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from MemoisableRules

Inherited from RulesWithState

Inherited from StateRules

Inherited from Rules

Inherited from AnyRef

Inherited from Any

Ungrouped