TextBufferWriter.set

Sets a character at a specific point.

Assertions: The point (x, y) must be in bounds.

struct TextBufferWriter
pure
set
(
size_t x
,
size_t y
,
char ch
)

Parameters

x size_t

The x position of the point.

y size_t

The y position of the point.

ch char

The character to place.

Return Value

this, for function chaining.

Meta