Module Location.T

module Addr = Merkle_address
module Prefix : sig ... end
type t =
| Generic of Bigstring.t
| Account of Addr.t
| Hash of Addr.t
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> t -> Ppx_hash_lib.Std.Hash.state
val hash : t -> Ppx_hash_lib.Std.Hash.hash_value
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val compare : t -> t -> int
val is_generic : t -> bool
val is_account : t -> bool
val is_hash : t -> bool
val height : ledger_depth:int -> t -> int
val root_hash : t
val last_direction : Addr.t -> Direction.t
val build_generic : Bigstring.t -> t
val parse : ledger_depth:Core_kernel__Int.t -> Bigstring.t -> ( t, unit ) Core.Result.t
val prefix_bigstring : Unsigned.UInt8.t -> Core.Bigstring.t -> Core.Bigstring.t
val to_path_exn : t -> Addr.t
val serialize : ledger_depth:Core_kernel__Int.t -> t -> Core.Bigstring.t
val parent : t -> t
val next : t -> t Core.Option.t
val prev : t -> t Core.Option.t
val sibling : t -> t
val order_siblings : t -> 'a -> 'a0 -> 'a1 * 'a1
type location = t
val location_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> location
val sexp_of_location : location -> Ppx_sexp_conv_lib.Sexp.t
val compare_location : location -> location -> int
val (>=) : location -> location -> bool
val (<=) : location -> location -> bool
val (=) : location -> location -> bool
val (>) : location -> location -> bool
val (<) : location -> location -> bool
val (<>) : location -> location -> bool
val equal : location -> location -> bool
val compare : location -> location -> int
val min : location -> location -> location
val max : location -> location -> location
val ascending : location -> location -> int
val descending : location -> location -> int
val between : location -> low:location -> high:location -> bool
val clamp_exn : location -> min:location -> max:location -> location
val clamp : location -> min:location -> max:location -> location Base__.Or_error.t
type comparator_witness
val comparator : ( location, comparator_witness ) Base__Comparator.comparator
val validate_lbound : min:location Base__.Maybe_bound.t -> location Base__.Validate.check
val validate_ubound : max:location Base__.Maybe_bound.t -> location Base__.Validate.check
val validate_bound : min:location Base__.Maybe_bound.t -> max:location Base__.Maybe_bound.t -> location Base__.Validate.check
module Replace_polymorphic_compare : sig ... end
module Map : sig ... end
module Set : sig ... end