StringBuilder

data T

A mutable string builder.

new :: <Proc> StringBuilder.T

Constructs a new StringBuilder.

newC :: Integer -> <Proc> StringBuilder.T

Constructs a new StringBuilder with initial capacity.

appendString :: StringBuilder.T -> String -> <Proc> StringBuilder.T

Appends the given string to the builder and returns the builder.

appendInteger :: StringBuilder.T -> Integer -> <Proc> StringBuilder.T

Appends the decimal representation of the given integer to the builder and returns the builder.

appendDouble :: StringBuilder.T -> Double -> <Proc> StringBuilder.T

Appends the representation of the given double to the builder and returns the builder.

toString :: StringBuilder.T -> <Proc> String

The contents of the builder as a string.

Undocumented entities