Includes is an ordered map of namespaces to includes.
| 29 | } |
| 30 | // Includes is an ordered map of namespaces to includes. |
| 31 | Includes struct { |
| 32 | om *orderedmap.OrderedMap[string, *Include] |
| 33 | mutex sync.RWMutex |
| 34 | } |
| 35 | // An IncludeElement is a key-value pair that is used for initializing an |
| 36 | // Includes structure. |
| 37 | IncludeElement orderedmap.Element[string, *Include] |
nothing calls this directly
no outgoing calls
no test coverage detected