Functor Mlpost.Pos.Array_


module Array_: 
functor (P : POS) -> SEQ with type 'a seq = 'a array and module P = P
Use this functor to align arrays of objects
Parameters:
P : POS

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.