IncludeOverloads defines an OverloadSelector which allow-lists a set of overloads by their ids.
(overloadIDs ...string)
| 209 | |
| 210 | // IncludeOverloads defines an OverloadSelector which allow-lists a set of overloads by their ids. |
| 211 | func IncludeOverloads(overloadIDs ...string) OverloadSelector { |
| 212 | return decls.IncludeOverloads(overloadIDs...) |
| 213 | } |
| 214 | |
| 215 | // ExcludeOverloads defines an OverloadSelector which deny-lists a set of overloads by their ids. |
| 216 | func ExcludeOverloads(overloadIDs ...string) OverloadSelector { |