summoner-1.1.0: Tool for creating completely configured production Haskell projects.
Summoner.GhcVer
data GhcVer Source #
Represents some selected set of GHC versions.
Constructors
Defined in Summoner.GhcVer
Methods
minBound :: GhcVer #
maxBound :: GhcVer #
succ :: GhcVer -> GhcVer #
pred :: GhcVer -> GhcVer #
toEnum :: Int -> GhcVer #
fromEnum :: GhcVer -> Int #
enumFrom :: GhcVer -> [GhcVer] #
enumFromThen :: GhcVer -> GhcVer -> [GhcVer] #
enumFromTo :: GhcVer -> GhcVer -> [GhcVer] #
enumFromThenTo :: GhcVer -> GhcVer -> GhcVer -> [GhcVer] #
(==) :: GhcVer -> GhcVer -> Bool #
(/=) :: GhcVer -> GhcVer -> Bool #
compare :: GhcVer -> GhcVer -> Ordering #
(<) :: GhcVer -> GhcVer -> Bool #
(<=) :: GhcVer -> GhcVer -> Bool #
(>) :: GhcVer -> GhcVer -> Bool #
(>=) :: GhcVer -> GhcVer -> Bool #
max :: GhcVer -> GhcVer -> GhcVer #
min :: GhcVer -> GhcVer -> GhcVer #
showsPrec :: Int -> GhcVer -> ShowS #
show :: GhcVer -> String #
showList :: [GhcVer] -> ShowS #
showGhcVer :: GhcVer -> Text Source #
Converts GhcVer into dot-separated string.
GhcVer
parseGhcVer :: Text -> Maybe GhcVer Source #
latestLts :: GhcVer -> Text Source #
Returns latest known LTS resolver for all GHC versions except default one.
baseVer :: GhcVer -> Text Source #
Returns base version by GhcVer.