definition: |
(-#) :: BinInt -> BinInt -> BinInt x -# Zero = x x -# Pos y = x +# Neg y x -# Neg y = x +# Pos y |
demand: |
arguments 1 2 |
deterministic: |
deterministic operation |
documentation: |
--- Subtracts two BinInts. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{Zero}) |-> _ || (_,{Pos}) |-> _ || (_,{Neg}) |-> _} |
name: |
-# |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
BinInt -> BinInt -> BinInt |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |