mirror of
https://github.com/c-cube/sidekick.git
synced 2026-01-25 10:56:41 -05:00
15 lines
271 B
OCaml
15 lines
271 B
OCaml
|
|
(** Vectors of int32 integers
|
|
|
|
These vectors are more optimized than {!Vec}. *)
|
|
|
|
include Vec_sig.S with type elt := int
|
|
|
|
val ensure_size : t -> int -> unit
|
|
|
|
val push_i32 : t -> int32 -> unit
|
|
|
|
val get_i32 : t -> int -> int32
|
|
|
|
val set_i32 : t -> int -> int32 -> unit
|
|
|