package biotk

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Dataframe.ParserSource

Sourcetype error = [
  1. | `Conversion_failure
  2. | `Msg of string
  3. | `Not_enough_columns
  4. | `Too_many_columns
  5. | `Unexpected_label of string * string
]
Sourcetype 'a t
Sourceval return : 'a -> 'a t
Sourceval bind : 'a t -> f:('a -> 'b t) -> 'b t
Sourceval ints : string -> int array t
Sourceval floats : string -> float array t
Sourceval strings : string -> string array t
Sourceval int_opts : string -> int option array t
Sourceval float_opts : string -> float option array t
Sourceval string_opts : string -> string option array t
Sourceval (let*) : 'a t -> ('a -> 'b t) -> 'b t
Sourceval (let+) : 'a t -> ('a -> 'b) -> 'b t