You can search for identifiers within the package.
in-package search v0.2.0
Implementation of Storage for type int
Storage
int
type storage = int
The storage type.
val zero : storage
The value for 0.
0
val one : storage
The value for 1.
1
val logand : storage -> storage -> storage
The land operator.
land
val logor : storage -> storage -> storage
The lor operator.
lor
val lognot : storage -> storage
The lnot operator.
lnot
val shift_left : storage -> int -> storage
The lsl operator.
lsl
val shift_right_logical : storage -> int -> storage
The lsr operator.
lsr
val compare : storage -> storage -> int
The compare operator.
compare
val toString : storage -> string
Conversion to string for the storage type.
string
storage