Overview  Index  Help 
SMLDoc

ParserUtil.PositionMap

Enclosing Modules:

ParserUtil


structure PositionMap : sig
                          type pos = int
                          type operations =
                               {
                                 posToLocation : pos -> int * int,
                                 makeMessage : string * pos * pos -> string,
                                 onNewLine : int -> unit
                               }
                          val create : string -> operations
                        end =
struct
  type pos = int
  type operations =
       {
         posToLocation : pos -> int * int,
         makeMessage : string * pos * pos -> string,
         onNewLine : int -> unit
       }
  val create : string -> operations
end

 
Type detail

pos

type pos = int


operations

type operations =
     {
       posToLocation : pos -> int * int,
       makeMessage : string * pos * pos -> string,
       onNewLine : int -> unit
     }

     
Value detail

create

val create : string -> operations

 


Overview  Index  Help 
SMLDoc: Documentation generator for SML