BO.BufferOverrunFieldval pp :
pp_lhs:(Stdlib.Format.formatter -> 'a -> unit) ->
sep:string ->
Stdlib.Format.formatter ->
'a ->
IR.Fieldname.t ->
unitA parameterized pretty printer for field appended values
val get_type : IR.Fieldname.t -> IR.Typ.t optionGet type of field that is constructed in this module. This does not work in Java at the moment.
val c_strlen : unit -> IR.Fieldname.tField for C string's length
val cpp_vector_elem : vec_typ:IR.Typ.t -> IR.Fieldname.tField for C++ vector's elements
val java_collection_internal_array : IR.Fieldname.tField for Java collection's elements
val java_linked_list_index : IR.Fieldname.tVirtual field for index of Java's linked list
val java_linked_list_length : IR.Fieldname.tVirtual field for length of Java's linked list
val java_linked_list_next : IR.Typ.t -> IR.Fieldname.tVirtual field for next of Java's linked list
val java_list_files_length : IR.Fieldname.tVirtual field for length of Java's files list in a directory
val cpp_collection_internal_array : IR.Fieldname.tField for C++ collection's elements
val is_cpp_vector_elem : IR.Fieldname.t -> boolCheck if the field is for C++ vector's elements
val is_java_collection_internal_array : IR.Fieldname.t -> boolCheck if the field is for Java collection's elements
val objc_collection_internal_array : IR.Fieldname.tField for ObjC's collection's elements
val objc_iterator_offset : IR.Fieldname.tField for ObjC's nscollection's iterator offset
type 'prim t = | Prim of 'prim| Field of {prefix : 'prim t;fn : IR.Fieldname.t;typ : IR.Typ.t option;}| StarField of {prefix : 'prim t;last_field : IR.Fieldname.t;}Represents a path starting with prefix and ending with the field last_field, the middle can be anything. Invariants:
include Ppx_compare_lib.Comparable.S1 with type 'prim t := 'prim tval compare :
'a Base__Ppx_compare_lib.compare ->
'a t Base__Ppx_compare_lib.compareinclude Ppx_compare_lib.Equal.S1 with type 'prim t := 'prim tval equal : 'a Base__Ppx_compare_lib.equal -> 'a t Base__Ppx_compare_lib.equalval mk_append_field :
prim_append_field:
(?typ:IR.Typ.t ->
'prim t ->
IR.Fieldname.t ->
(depth:int -> 'prim t -> 'prim t) ->
int ->
'prim ->
'prim t) ->
prim_append_star_field:
('prim t -> IR.Fieldname.t -> ('prim t -> 'prim t) -> 'prim -> 'prim t) ->
?typ:IR.Typ.t ->
'prim t ->
IR.Fieldname.t ->
'prim tval mk_append_star_field :
prim_append_star_field:
('prim t -> IR.Fieldname.t -> ('prim t -> 'prim t) -> 'prim -> 'prim t) ->
'prim t ->
IR.Fieldname.t ->
'prim t