data (<) : Int16 -> Int16 -> Type Witness that `m < n === True`.
Totality: total
Visibility: export
Constructor: LT : (0 _ : m < n = True) -> m < n
Hints:
(0 _ : m < n = True) -> m < n Total Int16 (<) WellFounded Int16 (<)
Fixity Declaration: infix operator, level 60 mkLT : (0 _ : m < n = True) -> m < n Contructor for `(<)`.
This can only be used in an erased context.
Totality: total
Visibility: export0 runLT : m < n -> m < n = True Extractor for `(<)`.
This can only be used in an erased context.
Totality: total
Visibility: exportstrictLT : (0 _ : m < n) -> Lazy c -> c We don't trust values of type `(<)` too much,
so we use this when creating magical results.
Totality: total
Visibility: export0 (>) : Int16 -> Int16 -> Type Flipped version of `(<)`.
Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 60 (<=) : Int16 -> Int16 -> Type `m <= n` mean that either `m < n` or `m === n` holds.
Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 60 (>=) : Int16 -> Int16 -> Type Flipped version of `(<=)`.
Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 60 (/=) : Int16 -> Int16 -> Type `m /= n` mean that either `m < n` or `m > n` holds.
Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 6comp : (m : Int16) -> (n : Int16) -> Trichotomy (<) m n- Totality: total
Visibility: export MinInt16 : Int16 Lower bound of `Int16`
Totality: total
Visibility: public exportMaxInt16 : Int16 Upper bound of `Int16`
Totality: total
Visibility: public export0 GTE_MinInt16 : (m : Int16) -> m >= MinInt16 `m >= MinInt16` for all `m` of type `Int16`.
Totality: total
Visibility: export0 Not_LT_MinInt16 : m < MinInt16 -> Void Not value of type `Int16` is less than zero.
Totality: total
Visibility: export0 LTE_MaxInt16 : (m : Int16) -> m <= MaxInt16 `m <= MaxInt16` for all `m` of type `Int16`.
Totality: total
Visibility: export0 Not_GT_MaxInt16 : m > MaxInt16 -> Void Not value of type `Int16` is greater than `MaxInt16`.
Totality: total
Visibility: exportaccessLT : (m : Int16) -> Accessible (<) m Every value of type `Int16` is accessible with relation
to `(<)`.
Totality: total
Visibility: exportaccessGT : (m : Int16) -> Accessible (>) m Every value of type `Int16` is accessible with relation
to `(>)`.
Totality: total
Visibility: exportsdiv : Int16 -> (d : Int16) -> {auto 0 _ : d /= 0} -> Int16 Safe division.
Totality: total
Visibility: exportsmod : Int16 -> (d : Int16) -> {auto 0 _ : d /= 0} -> Int16 Safe modulo.
Totality: total
Visibility: export