definition:
|
vlt :: Version -> Version -> Bool
vlt (majorA, minorA, patchA, preA) (majorB, minorB, patchB, preB) =
major || minor || patch || pre
where
major = majorA < majorB
minor = majorA <= majorB && minorA < minorB
patch = majorA <= majorB && minorA <= minorB && patchA < patchB
pre = case preA of
Nothing -> case preB of
Nothing -> patch
Just _ -> majorA <= majorB && minorA <= minorB && patchA <= patchB
Just a -> case preB of
Nothing -> False
Just b -> a `ltPre` b
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Less than operator for versions.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({(,,,)},{(,,,)}) |-> _}
|
name:
|
vlt
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe String)
-> (Prelude.Int, Prelude.Int, Prelude.Int, Prelude.Maybe String) -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|