You can search for identifiers within the package.
in-package search v0.2.0
bitmasks
BitMaskSet.Storage
Underlying storage type and operations on the storage type. Default implementations are provided in Int and Int64.
Int
Int64
type storage
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