AbiFilterSetSpec

A set of filters in a single direction: inclusion or exclusion.

Inclusion filters:

filters {
included {
byNames.add("foo.api.**")
annotatedWith.add("foo.PublicApi")
}
}

Exclusion filters:

```kotlin
filters {
excluded {
byNames.add("foo.Bar")
annotatedWith.add("foo.ExcludeAbi")
}
}

Since

2.1.20

Properties

Link copied to clipboard

Filter by annotations placed on the declaration.

Link copied to clipboard
abstract val byNames: SetProperty<String>

Filter by a name.