Skip to content

Commit

Permalink
Revert bug fix part of "Make push!! work with DataFrames"
Browse files Browse the repository at this point in the history
This reverts commit 18cb03e.
  • Loading branch information
tkf committed Nov 4, 2019
1 parent 18cb03e commit 457da3f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/base.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ julia> using DataFrames: DataFrame
julia> @assert push!!(DataFrame(a=[1], b=[2]), (a=3.0, b=4.0)) ==
DataFrame(a=[1.0, 3.0], b=[2.0, 4.0])
julia> using StructArrays: StructVector
julia> @assert push!!(StructVector(a=[1], b=[2]), (a=3.0, b=4.0)) ==
StructVector(a=[1.0, 3.0], b=[2.0, 4.0])
```
"""
push!!(xs, i1, i2, items...) =
Expand Down

0 comments on commit 457da3f

Please sign in to comment.