Skip to content

Commit e19d464

Browse files
committed
Add PassThrough type to make it easier to use Arrays and NullableArrays
1 parent 6526f59 commit e19d464

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/DataFramesMeta.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@ type PassThrough{T} <: AbstractVector{T}
528528
x::AbstractVector{T}
529529
end
530530
const P = PassThrough
531+
531532
size(x::PassThrough) = size(x.x)
532533
getindex(x::PassThrough, i) = getindex(x.x, i)
533534

0 commit comments

Comments
 (0)