Add #no_bounds_check to slice.equal

This commit is contained in:
Damian Tarnawski
2024-06-14 19:45:54 +02:00
committed by GitHub
parent b19bf5bbda
commit 8ba644dd79
+1 -1
View File
@@ -180,7 +180,7 @@ binary_search_by :: proc(array: $A/[]$T, key: T, f: proc(T, T) -> Ordering) -> (
} }
@(require_results) @(require_results)
equal :: proc(a, b: $T/[]$E) -> bool where intrinsics.type_is_comparable(E) { equal :: proc(a, b: $T/[]$E) -> bool where intrinsics.type_is_comparable(E) #no_bounds_check {
if len(a) != len(b) { if len(a) != len(b) {
return false return false
} }