You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# prevent using broadcasting to mutate columns e.g. in pop!.(eachcol(ds))
309
309
Base.broadcasted(::typeof(pop!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `pop!` over DatasetColums is reserved."))
310
310
Base.broadcasted(::typeof(popfirst!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `popfirst!` over DatasetColums is reserved."))
311
+
Base.broadcasted(::typeof(pushfirst!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `pushfirst!` over DatasetColums is reserved."))
311
312
Base.broadcasted(::typeof(fill!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `fill!` over DatasetColums is reserved."))
312
313
Base.broadcasted(::typeof(Statistics.median!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `median!` over DatasetColums is reserved."))
313
314
Base.broadcasted(::typeof(sort!), ::DatasetColumns, args...) =throw(ArgumentError("broadcasting `sort!` over DatasetColums is reserved."))
0 commit comments