package owl

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

Operator definition such add, sub, mul, and div.

module type BasicSig = sig ... end
module type ExtendSig = sig ... end
module type MatrixSig = sig ... end
module Make_Basic (M : BasicSig) : sig ... end
module Make_Extend (M : ExtendSig) : sig ... end
module Make_Matrix (M : MatrixSig) : sig ... end