withoutFunctionNamed
fun <T : KoFunctionProvider> List<T>.withoutFunctionNamed( name: String, vararg names: String, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations without any of specified functions.
Return
A list containing declarations without any of specified functions.
Parameters
name
The name of the function to exclude.
names
The names of additional functions to exclude.
includeNested
Whether to include nested functions.
includeLocal
Whether to include local functions.
fun <T : KoFunctionProvider> List<T>.withoutFunctionNamed( names: Collection<String>, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations without any of specified functions.
Return
A list containing declarations without any of specified functions.
Parameters
names
The names of additional functions to exclude.
includeNested
Whether to include nested functions.
includeLocal
Whether to include local functions.