Method |
Description |
|
@out ( ) : OutStream |
|
|
@typeof ( ) : Type |
|
|
StrBuf ( StringBuilder sb ) : System |
|
|
add ( object x ) : StrBuf |
|
|
addChar ( long ch ) : StrBuf |
|
|
capacity ( ) : long |
|
|
capacity ( long size ) : void |
|
|
clear ( ) : StrBuf |
|
|
get ( long index ) : long |
|
|
getRange ( Range r ) : string |
|
|
insert ( long index, object x ) : StrBuf |
|
|
isEmpty ( ) : bool |
|
|
join ( object x ) : StrBuf |
|
|
join ( object x, string sep ) : StrBuf |
|
|
make ( ) : StrBuf |
Create with initial capacity of 16. |
|
make ( long capacity ) : StrBuf |
Create with specified capacity. |
|
remove ( long index ) : StrBuf |
|
|
removeRange ( Range r ) : StrBuf |
|
|
replaceRange ( Range r, string str ) : StrBuf |
|
|
set ( long index, long ch ) : StrBuf |
|
|
size ( ) : long |
|
|
toStr ( ) : string |
|
|