Skip to content

Commit

Permalink
add a module comment for Aggregate for the ocamldoc
Browse files Browse the repository at this point in the history
  • Loading branch information
avsm committed Feb 20, 2009
1 parent bd1980f commit a92ecc2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sqlite3.mli
Expand Up @@ -496,9 +496,11 @@ external delete_function : db -> string -> unit = "caml_sqlite3_delete_function"
@raise SqliteError if an invalid database handle is passed.
*)

(** [Aggregate (X) will create a functor for aggregating SQL queries
using [X.t] as the aggregation variable.
*)
module Aggregate : functor (X : sig type t end) -> sig


val create_fun0 : db -> string -> X.t -> (X.t ref -> Data.t) ->
(X.t ref -> Data.t) -> unit
(** [create_fun0 db name initval stepfn finalfn] registers the step and
Expand Down Expand Up @@ -534,5 +536,5 @@ module Aggregate : functor (X : sig type t end) -> sig
@raise SqliteError if an invalid database handle is passed.
*)
end

end

0 comments on commit a92ecc2

Please sign in to comment.