package GuaCaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | Str of string
  2. | Int of int
type stream = token Stream.t
val string_of_token : token -> string
val python_is_rmline : string -> bool
val dimacs_is_rmline : string -> bool
val lexer : ?is_rmline:(string -> bool) -> char Stream.t -> token Stream.t
val parse_str : token Stream.t -> string
val parse_int : token Stream.t -> int