package owl

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

Define the types shared by various modules

type index =
  1. | I of int
  2. | L of int list
  3. | R of int list
type slice = index list
type index_ =
  1. | I_ of int
  2. | L_ of int array
  3. | R_ of int array
type slice_ = index_ array
type padding =
  1. | SAME
  2. | VALID
val _zero : 'a 'b. ('a, 'b) Bigarray.kind -> 'a
val _one : 'a 'b. ('a, 'b) Bigarray.kind -> 'a
val _pos_inf : 'a 'b. ('a, 'b) Bigarray.kind -> 'a
val _neg_inf : 'a 'b. ('a, 'b) Bigarray.kind -> 'a
module type NdarraySig = sig ... end
module type NdarraySig_Ext = sig ... end
module type InpureSig = sig ... end