withoutBareSourceTypeOf
fun <T : KoSourceTypeProvider> List<T>.withoutBareSourceTypeOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
List containing declarations without bare source type of.
Return
A list containing declarations without bare source type matching any of the specified types.
Parameters
kClass
The Kotlin class representing the bare source type to exclude.
kClasses
The Kotlin classes representing the bare source types to exclude.
fun <T : KoSourceTypeProvider> List<T>.withoutBareSourceTypeOf(kClasses: Collection<KClass<*>>): List<T>
List containing declarations without bare source type of.
Return
A list containing declarations without bare source type matching any of the specified types.
Parameters
kClasses
The Kotlin classes representing the bare source types to exclude.