genTabs

Generates a string containing the number of tabs specified

string
genTabs
(
size_t count
)

Parameters

count size_t

the number of tabs

Return Value

Type: string

the tabbed string

Examples

Tests genTabs(size_t)

size_t count = 2;

string output = genTabs(count);
assert(output == "\t\t");

Meta