package GuaCaml

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

Parameters

module MI : MSig
module MJ : MSig

Signature

module I : sig ... end
module J : sig ... end
type 'a t
val make : ?base:int -> I.s -> J.s -> 'a -> 'a t
val get_set_i : 'a t -> I.s
val get_set_j : 'a t -> J.s
val get_card_i : 'a t -> int
val get_card_j : 'a t -> int
val get : 'a t -> I.t -> J.t -> 'a
val set : 'a t -> I.t -> J.t -> 'a -> unit
val iter : ('a -> bool) -> (I.t -> J.t -> 'a -> unit) -> 'a t -> unit
val iter_submatrix : I.sub -> J.sub -> ('a -> bool) -> (I.t -> J.t -> 'a -> unit) -> 'a t -> unit
val fold : ('a -> bool) -> (I.t -> J.t -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val iter_row : ('a -> bool) -> (J.t -> 'a -> unit) -> 'a t -> I.t -> unit
val iter_subrow : J.sub -> ('a -> bool) -> (J.t -> 'a -> unit) -> 'a t -> I.t -> unit
val iter_col : ('a -> bool) -> (I.t -> 'a -> unit) -> 'a t -> J.t -> unit