Appends a boolean value to this CharArray.
(boolean value)
| 483 | |
| 484 | /** Appends a boolean value to this CharArray. */ |
| 485 | public CharArray append (boolean value) { |
| 486 | if (value) { |
| 487 | require(TRUE_STRING_SIZE); |
| 488 | appendTrue(size); |
| 489 | } else { |
| 490 | require(FALSE_STRING_SIZE); |
| 491 | appendFalse(size); |
| 492 | } |
| 493 | return this; |
| 494 | } |
| 495 | |
| 496 | /** Appends a char value to this CharArray. */ |
| 497 | public CharArray append (char value) { |