Skip to content

Commit d02d911

Browse files
committed
Remove export and rst docs for circshift! on release-0.5
ref #17861 (comment)
1 parent 8a1cf9b commit d02d911

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

base/abstractarraymath.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,6 @@ julia> circshift(b, (-1,0))
190190
4 8 12 16
191191
1 5 9 13
192192
```
193-
194-
See also `circshift!`.
195193
"""
196194
function circshift(a::AbstractArray, shiftamt)
197195
circshift!(similar(a), a, map(Integer, (shiftamt...,)))

base/exports.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,6 @@ export
490490
checkbounds,
491491
checkindex,
492492
circshift,
493-
circshift!,
494493
clamp!,
495494
colon,
496495
conj!,

doc/stdlib/arrays.rst

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -604,18 +604,6 @@ Indexing, Assignment, and Concatenation
604604
4 8 12 16
605605
1 5 9 13
606606

607-
See also ``circshift!``\ .
608-
609-
.. function:: circshift!(dest, src, shifts)
610-
611-
.. Docstring generated from Julia source
612-
613-
Circularly shift the data in ``src``\ , storing the result in ``dest``\ . ``shifts`` specifies the amount to shift in each dimension.
614-
615-
The ``dest`` array must be distinct from the ``src`` array (they cannot alias each other).
616-
617-
See also ``circshift``\ .
618-
619607
.. function:: find(A)
620608

621609
.. Docstring generated from Julia source

0 commit comments

Comments
 (0)