ModuleSetLocalOpaqueIDs is a convenience function that returns a slice of the OpaqueIDs of the local Modules in the ModuleSet. Sorted.
(moduleSet ModuleSet)
| 201 | // |
| 202 | // Sorted. |
| 203 | func ModuleSetLocalOpaqueIDs(moduleSet ModuleSet) []string { |
| 204 | return modulesOpaqueIDs(ModuleSetLocalModules(moduleSet)) |
| 205 | } |
| 206 | |
| 207 | // ModuleSetRemoteOpaqueIDs is a convenience function that returns a slice of the OpaqueIDs of the |
| 208 | // remote Modules in the ModuleSet. |
nothing calls this directly
no test coverage detected
searching dependent graphs…