module type SEQ = sig
.. end
This signature describes the output type of the Pos.List_
and Pos.Array_
functors.
module P: Pos.POS
The input module of signature
Pos.POS
type 'a
seq
The container sequence type
include Mlpost.Pos.POS
A sequence can also be positioned.
val horizontal : ?dx:Num.t ->
?pos:Command.position -> P.t seq -> t
Align the input objects horizontally and return the sequence of their
representations.
val vertical : ?dy:Num.t ->
?pos:Command.position -> P.t seq -> t
Align the input objects vertically and return the sequence of their
representations.
val tabular : ?dx:Num.t ->
?dy:Num.t ->
?pos:Command.position ->
P.t seq seq -> t seq
Align the input objects in a table and return the table of their
representations.