pub const STRING_MULTIPLICATION_LIMIT: usize = 1_000_000; // 1_000_000usizeExpand description
Maximum allowed repetitions for string multiplication operations.
Prevents excessive memory allocation when repeating strings through multiplication. Operations exceeding this limit will return an error rather than allocating unbounded memory.