JuliaParallel / JuliaParallel/DTables.jl
creating a `DTable` eagerly copy all entries?
Open
- Dominant language
- Julia
- Stars
- 81
- Forks
- 2
- Avg merge
- 2h 31m
- Merged PRs (30d)
- 1
Description
```julia
julia> struct A <: AbstractVector{Int}
v::Int
end
julia> Base.size(::A) = (100, 1)
julia> Base.getindex(a::A, ::Int) = (println("??"); a.v)
julia> using DTables
julia> dt = DTable((a=A(3),), 10);
??
??
??
??
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.