diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Grids/zero_dim_grid.jl	Sun Feb 19 22:20:44 2023 +0100
@@ -0,0 +1,14 @@
+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(())