Cabal-3.2.1.0: A framework for packaging Haskell software
Safe Haskell None
Language Haskell2010

Distribution.Types.Benchmark

Synopsis

Documentation

data Benchmark Source #

A "benchmark" stanza in a cabal file.

Instances

Instances details
Eq Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Data Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Methods

gfoldl :: ( forall d b. Data d => c (d -> b) -> d -> c b) -> ( forall g. g -> c g) -> Benchmark -> c Benchmark Source #

gunfold :: ( forall b r. Data b => c (b -> r) -> c r) -> ( forall r. r -> c r) -> Constr -> c Benchmark Source #

toConstr :: Benchmark -> Constr Source #

dataTypeOf :: Benchmark -> DataType Source #

dataCast1 :: Typeable t => ( forall d. Data d => c (t d)) -> Maybe (c Benchmark ) Source #

dataCast2 :: Typeable t => ( forall d e. ( Data d, Data e) => c (t d e)) -> Maybe (c Benchmark ) Source #

gmapT :: ( forall b. Data b => b -> b) -> Benchmark -> Benchmark Source #

gmapQl :: (r -> r' -> r) -> r -> ( forall d. Data d => d -> r') -> Benchmark -> r Source #

gmapQr :: forall r r'. (r' -> r -> r) -> r -> ( forall d. Data d => d -> r') -> Benchmark -> r Source #

gmapQ :: ( forall d. Data d => d -> u) -> Benchmark -> [u] Source #

gmapQi :: Int -> ( forall d. Data d => d -> u) -> Benchmark -> u Source #

gmapM :: Monad m => ( forall d. Data d => d -> m d) -> Benchmark -> m Benchmark Source #

gmapMp :: MonadPlus m => ( forall d. Data d => d -> m d) -> Benchmark -> m Benchmark Source #

gmapMo :: MonadPlus m => ( forall d. Data d => d -> m d) -> Benchmark -> m Benchmark Source #

Read Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Show Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Generic Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Semigroup Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Monoid Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Binary Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

NFData Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Structured Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

HasBuildInfo Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

Methods

buildInfo :: Lens' Benchmark BuildInfo Source #

buildable :: Lens' Benchmark Bool Source #

buildTools :: Lens' Benchmark [ LegacyExeDependency ] Source #

buildToolDepends :: Lens' Benchmark [ ExeDependency ] Source #

cppOptions :: Lens' Benchmark [ String ] Source #

asmOptions :: Lens' Benchmark [ String ] Source #

cmmOptions :: Lens' Benchmark [ String ] Source #

ccOptions :: Lens' Benchmark [ String ] Source #

cxxOptions :: Lens' Benchmark [ String ] Source #

ldOptions :: Lens' Benchmark [ String ] Source #

pkgconfigDepends :: Lens' Benchmark [ PkgconfigDependency ] Source #

frameworks :: Lens' Benchmark [ String ] Source #

extraFrameworkDirs :: Lens' Benchmark [ String ] Source #

asmSources :: Lens' Benchmark [ FilePath ] Source #

cmmSources :: Lens' Benchmark [ FilePath ] Source #

cSources :: Lens' Benchmark [ FilePath ] Source #

cxxSources :: Lens' Benchmark [ FilePath ] Source #

jsSources :: Lens' Benchmark [ FilePath ] Source #

hsSourceDirs :: Lens' Benchmark [ FilePath ] Source #

otherModules :: Lens' Benchmark [ ModuleName ] Source #

virtualModules :: Lens' Benchmark [ ModuleName ] Source #

autogenModules :: Lens' Benchmark [ ModuleName ] Source #

defaultLanguage :: Lens' Benchmark ( Maybe Language ) Source #

otherLanguages :: Lens' Benchmark [ Language ] Source #

defaultExtensions :: Lens' Benchmark [ Extension ] Source #

otherExtensions :: Lens' Benchmark [ Extension ] Source #

oldExtensions :: Lens' Benchmark [ Extension ] Source #

extraLibs :: Lens' Benchmark [ String ] Source #

extraGHCiLibs :: Lens' Benchmark [ String ] Source #

extraBundledLibs :: Lens' Benchmark [ String ] Source #

extraLibFlavours :: Lens' Benchmark [ String ] Source #

extraDynLibFlavours :: Lens' Benchmark [ String ] Source #

extraLibDirs :: Lens' Benchmark [ String ] Source #

includeDirs :: Lens' Benchmark [ FilePath ] Source #

includes :: Lens' Benchmark [ FilePath ] Source #

autogenIncludes :: Lens' Benchmark [ FilePath ] Source #

installIncludes :: Lens' Benchmark [ FilePath ] Source #

options :: Lens' Benchmark ( PerCompilerFlavor [ String ]) Source #

profOptions :: Lens' Benchmark ( PerCompilerFlavor [ String ]) Source #

sharedOptions :: Lens' Benchmark ( PerCompilerFlavor [ String ]) Source #

staticOptions :: Lens' Benchmark ( PerCompilerFlavor [ String ]) Source #

customFieldsBI :: Lens' Benchmark [( String , String )] Source #

targetBuildDepends :: Lens' Benchmark [ Dependency ] Source #

mixins :: Lens' Benchmark [ Mixin ] Source #

type Rep Benchmark Source #
Instance details

Defined in Distribution.Types.Benchmark

benchmarkModules :: Benchmark -> [ ModuleName ] Source #

Get all the module names from a benchmark.

benchmarkModulesAutogen :: Benchmark -> [ ModuleName ] Source #

Get all the auto generated module names from a benchmark. This are a subset of benchmarkModules .