Lexer

public protocol Lexer

Undocumented

  • Undocumented

    Declaration

    Swift

    associatedtype Char
  • In

    Undocumented

    Declaration

    Swift

    associatedtype In : Sort, HasAssociatedNativeType
  • Out

    Undocumented

    Declaration

    Swift

    associatedtype Out : Sort, HasAssociatedNativeType
  • Undocumented

    Declaration

    Swift

    func lex(input: Input<Char>, position: Int, in: In.Native) -> ParseResult<Out.Native>