Module 1-Inputs.Location

module Addr : module type of Merkle_address
module Prefix : sig ... end
type t =
| Generic of Core.Bigstring.t
| Account of Addr.t
| Hash of Addr.t
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.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 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 : Core.Bigstring.t -> t
val parse : ledger_depth:int -> Core.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:int -> 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 -> 'a -> 'a * 'a
include Core.Comparable.S with type t := t
val (>=) : t -> t -> bool
val (<=) : t -> t -> bool
val (=) : t -> t -> bool
val (>) : t -> t -> bool
val (<) : t -> t -> bool
val (<>) : t -> t -> bool
val equal : t -> t -> bool
val compare : t -> t -> int
val min : t -> t -> t
val max : t -> t -> t
val ascending : t -> t -> int
val descending : t -> t -> int
val between : t -> low:t -> high:t -> bool
val clamp_exn : t -> min:t -> max:t -> t
val clamp : t -> min:t -> max:t -> t Base__.Or_error.t
type comparator_witness
val comparator : ( t, comparator_witness ) Base__Comparator.comparator
val validate_lbound : min:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_ubound : max:t Base__.Maybe_bound.t -> t Base__.Validate.check
val validate_bound : min:t Base__.Maybe_bound.t -> max:t Base__.Maybe_bound.t -> t Base__.Validate.check
module Replace_polymorphic_compare : sig ... end
module Map : sig ... end
module Set : sig ... end