exception Uninitialized_field of string
Raised if a vertex is missing some of the attributes required by the source.
This module represents vertex sources, which are collections of vertices.
This module ensures that everything goes well. In particular, it verifies that all the vertices of a source are compatible (i.e. have the same initialized attributes).
An empty source can receive any vertex. The type of the source is then fixed by the first vertex added to it. Any vertex added to the source after the first one must have at least the same initialized attributes as the first vertex.
Note that the type of a source is reinitialized if the source is cleared.
exception Uninitialized_field of string
exception Incompatible_sources
type 'a t
val empty : ?size:int -> unit -> 'a t
size
.
val add : 'a t -> 'a Vertex.t -> unit
val (<<) : 'a t -> 'a Vertex.t -> 'a t
val length : 'a t -> int
val clear : 'a t -> unit
val append : 'a t -> 'a t -> unit
append s1 s2
appends the source s2
to s1
. s2
is not modified.
val iter : 'a t -> ('a Vertex.t -> unit) -> unit
val map : 'a t -> ('a Vertex.t -> 'b Vertex.t) -> 'b t
val map_to : 'a t -> ('a Vertex.t -> 'b Vertex.t) -> 'b t -> unit