bishbosh-0.1.4.0: Plays chess.
Safe HaskellNone
LanguageHaskell2010

BishBosh.Property.ShowFloat

Description

AUTHOR
Dr. Alistair Ward
DESCRIPTION
An interface for floating-point data, which provides an alterative to Show.
Synopsis

Type-classes

class ShowFloat a where Source #

An alternative to Show, for floating-point data.

Methods

showsFloat :: (Double -> ShowS) -> a -> ShowS Source #

Instances

Instances details
ShowFloat Double Source # 
Instance details

Defined in BishBosh.Property.ShowFloat

Methods

showsFloat :: (Double -> ShowS) -> Double -> ShowS Source #

ShowFloat Float Source # 
Instance details

Defined in BishBosh.Property.ShowFloat

Methods

showsFloat :: (Double -> ShowS) -> Float -> ShowS Source #

ShowFloat StopWatch Source # 
Instance details

Defined in BishBosh.Time.StopWatch

ShowFloat WeightedMeanAndCriterionValues Source # 
Instance details

Defined in BishBosh.Metric.WeightedMeanAndCriterionValues

ShowFloat CriteriaWeights Source # 
Instance details

Defined in BishBosh.Input.CriteriaWeights

ShowFloat RankValues Source # 
Instance details

Defined in BishBosh.Input.RankValues

ShowFloat PieceSquareTable Source # 
Instance details

Defined in BishBosh.Input.PieceSquareTable

ShowFloat EvaluationOptions Source # 
Instance details

Defined in BishBosh.Input.EvaluationOptions

ShowFloat Options Source # 
Instance details

Defined in BishBosh.Input.Options

Methods

showsFloat :: (Double -> ShowS) -> Options -> ShowS Source #

Integral r => ShowFloat (Ratio r) Source # 
Instance details

Defined in BishBosh.Property.ShowFloat

Methods

showsFloat :: (Double -> ShowS) -> Ratio r -> ShowS Source #

Functions

showsFloatToN' :: RealFloat a => NDecimalDigits -> a -> ShowS Source #

Render the specified data to the specified number of decimal digits.

showsFloatToN :: ShowFloat a => NDecimalDigits -> a -> ShowS Source #

Render the specified data to the specified number of decimal digits.