optparse-applicative-0.14.3.0: Utilities and combinators for parsing command line options

Safe HaskellSafe
LanguageHaskell98

Options.Applicative.Builder.Internal

Contents

Synopsis

Internals

data Mod f a #

An option modifier.

Option modifiers are values that represent a modification of the properties of an option.

The type parameter a is the return type of the option, while f is a record containing its properties (e.g. OptionFields for regular options, FlagFields for flags, etc...).

An option modifier consists of 3 elements:

  • A field modifier, of the form f a -> f a. These are essentially (compositions of) setters for some of the properties supported by f.
  • An optional default value and function to display it.
  • A property modifier, of the form OptProperties -> OptProperties. This is just like the field modifier, but for properties applicable to any option.

Modifiers are instances of Monoid, and can be composed as such.

One rarely needs to deal with modifiers directly, as most of the times it is sufficient to pass them to builders (such as strOption or flag) to create options (see Builder).

Constructors

Mod (f a -> f a) (DefaultProp a) (OptProperties -> OptProperties) 
Instances
Semigroup (Mod f a) #

Since: 0.13.0.0

Instance details

Defined in Options.Applicative.Builder.Internal

Methods

(<>) :: Mod f a -> Mod f a -> Mod f a #

sconcat :: NonEmpty (Mod f a) -> Mod f a #

stimes :: Integral b => b -> Mod f a -> Mod f a #

Monoid (Mod f a) # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

mempty :: Mod f a #

mappend :: Mod f a -> Mod f a -> Mod f a #

mconcat :: [Mod f a] -> Mod f a #

class HasName f where #

Methods

name :: OptName -> f a -> f a #

Instances
HasName FlagFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

name :: OptName -> FlagFields a -> FlagFields a #

HasName OptionFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

name :: OptName -> OptionFields a -> OptionFields a #

class HasValue f where #

Methods

hasValueDummy :: f a -> () #

Instances
HasValue ArgumentFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

hasValueDummy :: ArgumentFields a -> () #

HasValue OptionFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

hasValueDummy :: OptionFields a -> () #

class HasMetavar f where #

Methods

hasMetavarDummy :: f a -> () #

data FlagFields a #

Constructors

FlagFields 

Fields

Instances
HasName FlagFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

name :: OptName -> FlagFields a -> FlagFields a #

data CommandFields a #

Constructors

CommandFields 
Instances
HasMetavar CommandFields # 
Instance details

Defined in Options.Applicative.Builder.Internal

Methods

hasMetavarDummy :: CommandFields a -> () #

data DefaultProp a #

Constructors

DefaultProp (Maybe a) (Maybe (a -> String)) 

fieldMod :: (f a -> f a) -> Mod f a #

baseProps :: OptProperties #

Base default properties.

internal :: Mod f a #

Hide this option from the help text