Skip to content

Commit 7fe05db

Browse files
authored
remove some exports from Broadcast (#40543)
It seems like these were unintentional (and undocumented). Refs #26919.
1 parent ae1aa16 commit 7fe05db

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

base/Base.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ include("multidimensional.jl")
216216

217217
include("broadcast.jl")
218218
using .Broadcast
219-
using .Broadcast: broadcasted, broadcasted_kwsyntax, materialize, materialize!
219+
using .Broadcast: broadcasted, broadcasted_kwsyntax, materialize, materialize!,
220+
broadcast_preserving_zero_d, andand, oror
220221

221222
# missing values
222223
include("missing.jl")

base/broadcast.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using .Base.Cartesian
1111
using .Base: Indices, OneTo, tail, to_shape, isoperator, promote_typejoin, @pure,
1212
_msk_end, unsafe_bitgetindex, bitcache_chunks, bitcache_size, dumpbitcache, unalias
1313
import .Base: copy, copyto!, axes
14-
export broadcast, broadcast!, BroadcastStyle, broadcast_axes, broadcastable, dotview, @__dot__, broadcast_preserving_zero_d, BroadcastFunction, andand, oror
14+
export broadcast, broadcast!, BroadcastStyle, broadcast_axes, broadcastable, dotview, @__dot__, BroadcastFunction
1515

1616
## Computing the result's axes: deprecated name
1717
const broadcast_axes = axes

0 commit comments

Comments
 (0)