Zymba Documentation
Output
Text
object @Output() {
clear() {}
echo(...$strings) {}
flush() {}
getContent(): string {}
getLevel(): int {}
getSize(): int {}
}
Static standard output related prototypes and functions.
Functions
Clears the output buffer.
CODE
@Output.clear(): void
Outputs strings.
CODE
@Output.echo(variadic $strings): void
Parameters
| Name | Type | Value | Default |
|---|---|---|---|
| strings | variadic | ... |
Flushes the output buffer.
CODE
@Output.flush(): void
Gets the content of the current output buffer.
CODE
@Output.getContent(): string
Returns
| Type | Value |
|---|---|
string |
Gets the size of the current output buffer in number of bytes.
CODE
@Output.getSize(): int
Returns
| Type | Value |
|---|---|
int |