text-show-0.4.1: Efficient conversion of values into Text

Copyright(C) 2014 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityExperimental
PortabilityGHC
Safe HaskellNone
LanguageHaskell98

Text.Show.Text.Foreign.Ptr

Description

Monomorphic Show functions for pointer types used in the Haskell Foreign Function Interface (FFI).

Synopsis

Documentation

showbPtr :: Ptr a -> Builder Source

Convert a Ptr to a Builder. Note that this does not require the parameterized type to be an instance of Show itself.

showbFunPtr :: FunPtr a -> Builder Source

Convert a FunPtr to a Builder. Note that this does not require the parameterized type to be an instance of Show itself.

showbIntPtrPrec :: Int -> IntPtr -> Builder Source

Convert an IntPtr to a Builder with the given precedence.

showbForeignPtr :: ForeignPtr a -> Builder Source

Convert a ForeignPtr to a Builder. Note that this does not require the parameterized type to be an instance of Show itself.