without All Annotations Named
fun <T : KoAnnotationProvider> List<T>.withoutAllAnnotationsNamed(name: String, vararg names: String): List<T>
List containing declarations without all specified annotations.
Return
A list containing declarations without all specified annotation(s).
Parameters
name
The name of the annotation to exclude.
names
The name(s) of the annotation(s) to exclude.
fun <T : KoAnnotationProvider> List<T>.withoutAllAnnotationsNamed(names: Collection<String>): List<T>
List containing declarations without all specified annotations.
Return
A list containing declarations without all specified annotation(s).
Parameters
names
The name(s) of the annotation(s) to exclude.