printDataFromPartialRowOutput

Undocumented in source. Be warned that the author may not have intended to support it.
version(Posix)
string
printDataFromPartialRowOutput

Examples

PartialRowOutput[] pros;

pros = [PartialRowOutput(Coordinate(0, 2), "foo")];
assert(pros.printDataFromPartialRowOutput() == "\033[3;1Hfoo");

pros = [
    PartialRowOutput(Coordinate(0, 0), "foo"),
    PartialRowOutput(Coordinate(2, 3), "bar"),
];
assert(pros.printDataFromPartialRowOutput() == "\033[1;1Hfoo\033[4;3Hbar");

Meta