DPutils-0.1.1.0: utilities for DP
Safe HaskellNone
LanguageHaskell2010

Data.Info

Description

Similar to Show, this module provides a string via info. This string gives convenient user-information on objects.

Documentation

class Info c where Source #

Methods

info :: c -> String Source #

The string returned by info should be around 60 chars per line, and one line if possible.

Instances

Instances details
Info Int Source # 
Instance details

Defined in Data.Info

Methods

info :: Int -> String Source #

(Unbox a, Info a) => Info (Vector a) Source # 
Instance details

Defined in Data.Info

Methods

info :: Vector a -> String Source #

(Info a, Info b, Info c) => Info (a, b, c) Source # 
Instance details

Defined in Data.Info

Methods

info :: (a, b, c) -> String Source #