Idris2Doc : Hedgehog.Internal.Config

Hedgehog.Internal.Config

(source)

Definitions

dataUseColor : Type
  Whether to render output using ANSI colors or not.

Totality: total
Visibility: public export
Constructors:
DisableColor : UseColor
EnableColor : UseColor

Hints:
EqUseColor
OrdUseColor
ShowUseColor
dataVerbosity : Type
  How verbose should the report output be.

Totality: total
Visibility: public export
Constructors:
Quiet : Verbosity
Normal : Verbosity

Hints:
EqVerbosity
OrdVerbosity
ShowVerbosity
interfaceHasConfig : (Type->Type) ->Type
  Defines points of an global configuration for a Hedgehog run

Parameters: m
Constructor: 
MkHasConfig

Methods:
detectColor : mUseColor
detectVerbosity : mVerbosity

Implementation: 
HasIOio=>HasConfigio
detectColor : HasConfigm=>mUseColor
Totality: total
Visibility: public export
detectVerbosity : HasConfigm=>mVerbosity
Totality: total
Visibility: public export
resolveColor : HasConfigm=>Applicativem=>MaybeUseColor->mUseColor
Totality: total
Visibility: export
resolveVerbosity : HasConfigm=>Applicativem=>MaybeVerbosity->mVerbosity
Totality: total
Visibility: export
DefaultConfig : Applicativem=>HasConfigm
  Uses the most conservative configuration

This implementation is applicable for any applicative context,
including pure ones.

Totality: total
Visibility: export