Module Mavkit_smart_rollup_wasm_debugger_lib.Repl_helpers
val read_file : Lwt_io.file_name -> string Lwt.t
type integer_value_kind = [
|
`U16
|
`I32
|
`I64
|
`U128
|
`U256
]
type printable_value_kind = [
|
integer_value_kind
|
`Hex
|
`String
|
`Custom of bytes -> string
]
val integer_value_kind_of_string :
string ->
[> `I32 | `I64 | `U128 | `U16 | `U256 ] option
val find_encoding :
string ->
[> `Custom of bytes -> string | `I32 | `I64 | `U128 | `U16 | `U256 ] option
val integer_value_kind_to_string :
[< `I32 | `I64 | `U128 | `U16 | `U256 ] ->
string
val value_kind_length : [< `I32 | `I64 | `U128 | `U16 | `U256 ] -> int
val printable_value_kind_of_string :
string ->
[> `Custom of bytes -> string
| `Hex
| `I32
| `I64
| `String
| `U128
| `U16
| `U256 ]
option