Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.08 KB

strings.md

File metadata and controls

37 lines (31 loc) · 1.08 KB

strings

class strings.StringBuilder

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:3:1

property length

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:7:5

property int length

method construct

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:14:5

method construct(string str = "")

method append

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:24:5

append writes the given string or string builder to the end of this string builder

method append(string|StringBuilder str) returns self

method toString

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:36:5

toString returns the constructed string

method toString() returns string

method toStringFlush

Source: /home/runner/work/aspl/aspl/stdlib/strings/StringBuilder.aspl:44:5

toStringFlush returns the constructed string and empties the string builder

method toStringFlush() returns string