Mercurial > repos > public > sbplib_julia
view src/Grids/zero_dim_grid.jl @ 1243:783284b3e438 refactor/grids
Fix include errors
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 21 Feb 2023 21:36:49 +0100 |
parents | 8806f4cd6fee |
children | 3fc78ad26d03 |
line wrap: on
line source
struct ZeroDimGrid{T,S,RD} <: Grid{T,0,RD} p::S function ZeroDimGrid(p) T = eltype(p) S = typeof(p) RD = length(p) return new{T,S,RD}(p) end end Base.size(g::ZeroDimGrid) = () Base.getindex(g::ZeroDimGrid) = g.p Base.eachindex(g::ZeroDimGrid) = CartesianIndices(())