Add #no_bounds_check to procedures in core:unicode

This commit is contained in:
thetarnav
2025-10-08 22:00:44 +02:00
parent f564f66c03
commit 3317a1f0e9
2 changed files with 26 additions and 23 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ package unicode
// simple_fold('\u212a') == 'k'
// simple_fold(-3) == -3
@(require_results)
simple_fold :: proc(r: rune) -> rune {
simple_fold :: proc(r: rune) -> rune #no_bounds_check {
Fold_Pair :: struct {
from: u16,
to: u16,