JuliaParallel / JuliaParallel/DTables.jl

creating a `DTable` eagerly copy all entries?

Open
#59 6 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.