mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 19:13:02 +03:00
43 lines
955 B
Idris
43 lines
955 B
Idris
module Text.Quantity
|
|
|
|
public export
|
|
record Quantity where
|
|
constructor Qty
|
|
min : Nat
|
|
max : Maybe Nat
|
|
|
|
public export
|
|
Show Quantity where
|
|
show (Qty Z Nothing) = "*"
|
|
show (Qty Z (Just (S Z))) = "?"
|
|
show (Qty (S Z) Nothing) = "+"
|
|
show (Qty min max) = "{" ++ show min ++ showMax ++ "}"
|
|
where
|
|
showMax : String
|
|
showMax = case max of
|
|
Nothing => ","
|
|
Just max' => if min == max'
|
|
then ""
|
|
else "," ++ show max'
|
|
|
|
public export
|
|
between : Nat -> Nat -> Quantity
|
|
between min max = Qty min (Just max)
|
|
|
|
public export
|
|
atLeast : Nat -> Quantity
|
|
atLeast min = Qty min Nothing
|
|
|
|
public export
|
|
atMost : Nat -> Quantity
|
|
atMost max = Qty 0 (Just max)
|
|
|
|
public export
|
|
exactly : Nat -> Quantity
|
|
exactly n = Qty n (Just n)
|
|
|
|
public export
|
|
inOrder : Quantity -> Bool
|
|
inOrder (Qty min Nothing) = True
|
|
inOrder (Qty min (Just max)) = min <= max
|