Idris2Doc : Data.DShow

Data.DShow

(source)

Definitions

interfaceDShow : (t->Type) ->Type
  Equivalent of `Show` for single-parameter dependent types

Inspired by the `GShow` typeclass from Haskells "some" package.
Modeled after the `Show` interface from `base`.

Parameters: f
Methods:
dshow : fa->String
  Analogous to `show`
dshowPrec : Prec->fa->String
  Analogous to `showPrec`
dshow : DShowf=>fa->String
  Analogous to `show`

Visibility: public export
dshowPrec : DShowf=>Prec->fa->String
  Analogous to `showPrec`

Visibility: public export
dshowArg : DShowf=>fx->String
  `Prelude.Show.showArg` in terms of `DShow`

Visibility: export