ModuleSetNonTargetOpaqueIDs is a convenience function that returns a slice of the OpaqueIDs of the non-target Modules in the ModuleSet. Sorted.
(moduleSet ModuleSet)
| 193 | // |
| 194 | // Sorted. |
| 195 | func ModuleSetNonTargetOpaqueIDs(moduleSet ModuleSet) []string { |
| 196 | return modulesOpaqueIDs(ModuleSetNonTargetModules(moduleSet)) |
| 197 | } |
| 198 | |
| 199 | // ModuleSetLocalOpaqueIDs is a convenience function that returns a slice of the OpaqueIDs of the |
| 200 | // local Modules in the ModuleSet. |
nothing calls this directly
no test coverage detected
searching dependent graphs…