Mercurial > repos > public > sbplib_julia
view src/Grids/zero_dim_grid.jl @ 1234:8806f4cd6fee refactor/grids
Move ZeroDimGrid to its own file
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sun, 19 Feb 2023 22:20:44 +0100 |
parents | |
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(())