Idris2Doc : Data.Prim.Int

Data.Prim.Int

(source)

Reexports

importpublic Control.WellFounded
importpublic Data.DPair
importpublic Data.Prim.Ord
importpublic Algebra.Solver.Ring

Definitions

data(<) : Int->Int->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
TotalInt(<)

Fixity Declaration: infix operator, level 6
0mkLT : (0_ : m<n=True) ->m<n
  Contructor for `(<)`.

This can only be used in an erased context.

Totality: total
Visibility: export
0runLT : m<n->m<n=True
  Extractor for `(<)`.

This can only be used in an erased context.

Totality: total
Visibility: export
strictLT : (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: export
0(>) : Int->Int->Type
  Flipped version of `(<)`.

Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 6
0(<=) : Int->Int->Type
  `m <= n` mean that either `m < n` or `m === n` holds.

Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 6
0(>=) : Int->Int->Type
  Flipped version of `(<=)`.

Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 6
0(/=) : Int->Int->Type
  `m /= n` mean that either `m < n` or `m > n` holds.

Totality: total
Visibility: public export
Fixity Declaration: infix operator, level 6
comp : (m : Int) -> (n : Int) ->Trichotomy(<)mn
Totality: total
Visibility: export
sdiv : Int-> (d : Int) -> {auto0_ : d/=0} ->Int
  Safe division.

Totality: total
Visibility: export
smod : Int-> (d : Int) -> {auto0_ : d/=0} ->Int
  Safe modulo.

Totality: total
Visibility: export