Skip to main content

STRING_MULTIPLICATION_LIMIT

Constant STRING_MULTIPLICATION_LIMIT 

Source
pub const STRING_MULTIPLICATION_LIMIT: usize = 1_000_000; // 1_000_000usize
Expand 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.