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