Idris2Doc : Data.Refined.Int64

Data.Refined.Int64

(source)

Reexports

importpublic Data.Prim.Int64
importpublic Data.Refined.Core

Definitions

0LessThan : Int64->Int64->Type
  `LessThan m n` is an alias for `n < m`.

This is useful when defining ranges such as
`From 2 && LessThan 10`, but it gives the wrong idea when used in
infix notation. So, don't do this: ```x `LessThan` 10```.

Totality: total
Visibility: public export
0To : Int64->Int64->Type
  `From m n` is an alias for `n <= m`.

Totality: total
Visibility: public export
0GreaterThan : Int64->Int64->Type
  `GreaterThan m n` is an alias for `m < n`.

This is useful when defining ranges such as
`From 2 && LessThan 10`, but it gives the wrong idea when used in
infix notation. So, don't do this: ```x `GreaterThan` 10```.

Totality: total
Visibility: public export
0From : Int64->Int64->Type
  `From m n` is an alias for `m <= n`.

Totality: total
Visibility: public export
0FromTo : Int64->Int64->Int64->Type
  `FromTo m n` is an alias for `From m && To n`.

Totality: total
Visibility: public export
0Between : Int64->Int64->Int64->Type
  `Between m n` is an alias for `GreaterThan m && LessThan n`.

Totality: total
Visibility: public export
0widen : FromTomnx-> {auto0_ : m2<=m} -> {auto0_ : n<=n2} ->FromTom2n2x
Totality: total
Visibility: export
0widen' : Betweenmnx-> {auto0_ : m2<=m} -> {auto0_ : n<=n2} ->Betweenm2n2x
Totality: total
Visibility: export