Gpointer
Gpointer
: various kinds of pointers to C data
val optaddr : 'a option -> 'a optaddr
val boxed_null : boxed
val peek_string : ?pos:int -> ?len:int -> boxed -> string
val peek_int : boxed -> int
val poke_int : boxed -> int -> unit
val peek_nativeint : boxed -> nativeint
val poke_nativeint : boxed -> nativeint -> unit
val optboxed : 'a option -> 'a optboxed
val may_box : f:('a -> 'b) -> 'a option -> 'b optboxed
val decode_variant : 'a variant_table -> int -> 'a
val encode_variant : 'a variant_table -> 'a -> int
val decode_flags : 'a variant_table -> int -> 'a list
val encode_flags : 'a variant_table -> 'a list -> int
val stable_copy : 'a -> 'a stable
Region handling
val length : region -> int
the length of the region
val get_addr : region -> nativeint
the length of the region
the start address of the region
val get_byte : region -> pos:int -> int
val set_byte : region -> pos:int -> int -> unit
val region_of_bytes : bytes -> region
create a region sharing a string
val bytes_of_region : region -> bytes
create a region sharing a string
copy the contents of the region to a string
Unsafe access
val unsafe_create_region :
path:int array ->
get_length:('a -> int) ->
'a ->
region
unsafe_create_region ~path ~get_length
returns a function to build regions from a specific kind of data abstraction
val unsafe_get_byte : region -> pos:int -> int
val unsafe_set_byte : region -> pos:int -> int -> unit