MuCheck-0.1.1.0: Automated Mutation Testing

Safe HaskellSafe-Inferred
LanguageHaskell2010

MuCheck.Utils.Common

Synopsis

Documentation

choose :: [b] -> Int -> [[b]] Source

The choose function generates subsets of a given size

genFileNames :: String -> [String] Source

The genFileNames function lazily generates filenames of mutants

replace :: Eq a => (a, a) -> [a] -> [a] Source

The replace function replaces first element in a list given old and new values as a pair

safeHead :: [a] -> Maybe a Source

The safeHead function safely extracts head of a list using Maybe