without Represented Type Of
fun <T : KoRepresentsTypeProvider> List<T>.withoutRepresentedTypeOf(kClass: KClass<*>?, vararg kClasses: KClass<*>?): List<T>
List containing declarations that do not represent the type.
Return
A list containing declarations without types matching the specified Kotlin classes.
Parameters
k Class
The Kotlin class representing the type to exclude.
k Classes
The Kotlin classes representing the types to exclude.
fun <T : KoRepresentsTypeProvider> List<T>.withoutRepresentedTypeOf(kClasses: Collection<KClass<*>?>): List<T>
List containing declarations that do not represent the type.
Return
A list containing declarations without types matching the specified Kotlin classes.
Parameters
k Classes
The Kotlin classes representing the types to exclude.