@@ -67,8 +67,8 @@ The overall hierarchy is:
67
67
68
68
| ``checkbounds(A, I...)`` which calls
69
69
| ``checkbounds(Bool, A, I...)`` which calls either of:
70
- | ``checkbounds_logical(A, I)`` when ``I`` is a single logical array
71
- | ``checkbounds_indices(indices(A), I)`` otherwise
70
+ | ``checkbounds_logical(Bool, A, I)`` when ``I`` is a single logical array
71
+ | ``checkbounds_indices(Bool, indices(A), I)`` otherwise
72
72
|
73
73
74
74
Here ``A `` is the array, and ``I `` contains the "requested" indices.
@@ -85,8 +85,8 @@ dimensions handled by calling another important function,
85
85
``checkindex ``: typically,
86
86
::
87
87
88
- checkbounds_indices((IA1, IA...), (I1, I...)) = checkindex(Bool, IA1, I1) &
89
- checkbounds_indices(IA, I)
88
+ checkbounds_indices(Bool, (IA1, IA...), (I1, I...)) = checkindex(Bool, IA1, I1) &
89
+ checkbounds_indices(Bool, IA, I)
90
90
91
91
so ``checkindex `` checks a single dimension. All of these functions,
92
92
including the unexported ``checkbounds_indices `` and
0 commit comments