Matrix is an ordered map of variable names to arrays of values.
| 13 | type ( |
| 14 | // Matrix is an ordered map of variable names to arrays of values. |
| 15 | Matrix struct { |
| 16 | om *orderedmap.OrderedMap[string, *MatrixRow] |
| 17 | } |
| 18 | // A MatrixElement is a key-value pair that is used for initializing a |
| 19 | // Matrix structure. |
| 20 | MatrixElement orderedmap.Element[string, *MatrixRow] |
nothing calls this directly
no outgoing calls
no test coverage detected