Skip to content

Commit b81e33f

Browse files
adrhillmbauman
andauthored
Mark require_one_based_indexing and has_offset_axes as public (#56196)
The discussion here mentions `require_one_based_indexing` being part of the public API: #43263 Both functions are also documented (albeit in the dev docs): * `require_one_based_indexing`: https://docs.julialang.org/en/v1/devdocs/offset-arrays/#man-custom-indices * `has_offset_axes`: https://docs.julialang.org/en/v1/devdocs/offset-arrays/#For-objects-that-mimic-AbstractArray-but-are-not-subtypes Towards #51335. --------- Co-authored-by: Matt Bauman <[email protected]>
1 parent bf8f814 commit b81e33f

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

NEWS.md

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ New library features
116116
the uniquing checking ([#53474])
117117
* `RegexMatch` objects can now be used to construct `NamedTuple`s and `Dict`s ([#50988])
118118
* `Lockable` is now exported ([#54595])
119+
* `Base.require_one_based_indexing` and `Base.has_offset_axes` are now public ([#56196])
119120
* New `ltruncate`, `rtruncate` and `ctruncate` functions for truncating strings to text width, accounting for char widths ([#55351])
120121
* `isless` (and thus `cmp`, sorting, etc.) is now supported for zero-dimensional `AbstractArray`s ([#55772])
121122

base/public.jl

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ public
2828
acquire,
2929
release,
3030

31+
# arrays
32+
has_offset_axes,
33+
require_one_based_indexing,
34+
3135
# collections
3236
IteratorEltype,
3337
IteratorSize,

doc/src/base/arrays.md

+6
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,12 @@ Base.checkindex
115115
Base.elsize
116116
```
117117

118+
While most code can be written in an index-agnostic manner (see, e.g., [`eachindex`](@ref)), it can sometimes be useful to explicitly check for offset axes:
119+
```@docs
120+
Base.require_one_based_indexing
121+
Base.has_offset_axes
122+
```
123+
118124
## Views (SubArrays and other view types)
119125

120126
A “view” is a data structure that acts like an array (it is a subtype of `AbstractArray`), but the underlying data is actually

0 commit comments

Comments
 (0)