Skip to content

Commit 62bc97c

Browse files
committed
add news/docs for 2-arg splice! on arbitrary index iterables (#34524)
1 parent c2cd601 commit 62bc97c

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

NEWS.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ New library features
6666
* `isapprox` (or ``) now has a one-argument "curried" method `isapprox(x)` which returns a function, like `isequal` (or `==`)` ([#32305]).
6767
* `Ref{NTuple{N,T}}` can be passed to `Ptr{T}`/`Ref{T}` `ccall` signatures ([#34199])
6868
* `accumulate`, `cumsum`, and `cumprod` now support `Tuple` ([#34654]).
69-
69+
* In `splice!` with no replacement, values to be removed can now be specified with an
70+
arbitrary iterable (instead of a `UnitRange`) ([#34524]).
7071

7172
Standard library changes
7273
------------------------

base/array.jl

+8-5
Original file line numberDiff line numberDiff line change
@@ -1393,17 +1393,20 @@ function splice!(a::Vector, i::Integer, ins=_default_splice)
13931393
end
13941394

13951395
"""
1396-
splice!(a::Vector, range, [replacement]) -> items
1396+
splice!(a::Vector, indices, [replacement]) -> items
13971397
1398-
Remove items in the specified index range, and return a collection containing
1398+
Remove items at specified indices, and return a collection containing
13991399
the removed items.
1400-
Subsequent items are shifted left to fill the resulting gap.
1401-
If specified, replacement values from an ordered collection will be spliced in
1402-
place of the removed items.
1400+
Subsequent items are shifted left to fill the resulting gaps.
1401+
If specified, replacement values from an ordered collection will be spliced
1402+
in place of the removed items; in this case, `indices` must be a `UnitRange`.
14031403
14041404
To insert `replacement` before an index `n` without removing any items, use
14051405
`splice!(collection, n:n-1, replacement)`.
14061406
1407+
!!! compat "Julia 1.5"
1408+
Prior to Julia 1.5, `indices` must always be a `UnitRange`.
1409+
14071410
# Examples
14081411
```jldoctest
14091412
julia> A = [-1, -2, -3, 5, 4, 3, -1]; splice!(A, 4:3, 2)

0 commit comments

Comments
 (0)