package pyml

  1. Overview
  2. Docs
type pyobject
type compare =
  1. | LT
  2. | LE
  3. | EQ
  4. | NE
  5. | GT
  6. | GE
type input =
  1. | Single
  2. | File
  3. | Eval
val int_of_compare : compare -> int
val compare_of_int : int -> compare
val input_of_int : int -> input
type 'a file =
  1. | Filename of string
  2. | Channel of 'a
val file_map : ('a -> 'b) -> 'a file -> 'b file