Closed metagn closed 1 year ago
someChar.ord has the type int, and sets with elements of type int default to set[range[0..65535]] which uses 8192 bytes of memory. Change these into multiple range checks or checks with set[char].
someChar.ord
int
set[range[0..65535]]
set[char]
someChar.ord
has the typeint
, and sets with elements of typeint
default toset[range[0..65535]]
which uses 8192 bytes of memory. Change these into multiple range checks or checks withset[char]
.