YAML sequence with metadata.
YAML sequence (array) values with metadata
val make :
?anchor:string ->
?tag:string ->
?implicit:bool ->
?style:Layout_style.t ->
'a list ->
'a tCreate a sequence
Accessors
val members : 'a t -> 'a listval anchor : 'a t -> string optionval tag : 'a t -> string optionval implicit : 'a t -> boolval style : 'a t -> Layout_style.tModifiers
val with_style : Layout_style.t -> 'a t -> 'a tOperations
val length : 'a t -> intval is_empty : 'a t -> boolval nth : 'a t -> int -> 'aval nth_opt : 'a t -> int -> 'a optionval iter : ('a -> unit) -> 'a t -> unitval fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'bComparison
val pp : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit