without Receiver Type Of
fun <T : KoReceiverTypeProvider> List<T>.withoutReceiverTypeOf(kClass: KClass<*>, vararg kClasses: KClass<*>): List<T>
List containing declarations without receiver type.
Return
A list containing declarations without receiver type of the specified Kotlin class(es).
Parameters
k Class
The Kotlin class representing the receiver type to exclude.
k Classes
The Kotlin class(es) representing the receiver type(s) to exclude.
fun <T : KoReceiverTypeProvider> List<T>.withoutReceiverTypeOf(kClasses: Collection<KClass<*>>): List<T>
List containing declarations without receiver type.
Return
A list containing declarations without receiver type of the specified Kotlin class(es).
Parameters
k Classes
The Kotlin class(es) representing the receiver type(s) to exclude.