purescript-0.7.2.1: PureScript Programming Language Compiler

Safe HaskellSafe-Inferred
LanguageHaskell98

Language.PureScript.Publish.BoxesHelpers

Synopsis

Documentation

data Box :: *

The basic data type. A box has a specified size and some sort of contents.

Instances

Show Box 
IsString Box

Convenient ability to use bare string literals as boxes.

nullBox :: Box

The null box, which has no content and no size. It is quite useless.

vcat :: [Box] -> Box Source

bulletedList :: (a -> String) -> [a] -> [Box] Source