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