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

Copyright(C) 2014-2016 Ryan Scott
LicenseBSD-style (see the file LICENSE)
MaintainerRyan Scott
StabilityProvisional
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

TextShow.Data.Array

Contents

Description

Monomorphic TextShow function for Array values.

Since: 2

Synopsis

Documentation

showbArrayPrec :: (TextShow i, TextShow e, Ix i) => Int -> Array i e -> Builder Source #

Convert an Array value to a Builder with the given precedence.

Since: 2

showbUArrayPrec :: (IArray UArray e, Ix i, TextShow i, TextShow e) => Int -> UArray i e -> Builder Source #

Convert a UArray value to a Builder with the given precedence.

Since: 2

showbIArrayPrec :: (IArray a e, Ix i, TextShow i, TextShow e) => Int -> a i e -> Builder Source #

Convert an IArray instance to a Builder with the given precedence.

Since: 2

Orphan instances