Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 1.12 KB

File metadata and controls

61 lines (33 loc) · 1.12 KB
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > IStringBuilder

IStringBuilder interface

An interface for a builder object that allows a large text string to be constructed incrementally by appending small chunks.

Signature:

export interface IStringBuilder 

Remarks

StringBuilder is the default implementation of this contract.

Methods

Method

Description

append(text)

Append the specified text to the buffer.

toString()

Returns a single string containing all the text that was appended to the buffer so far.