without All Functions Named
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.
include Nested
Whether to include nested functions.
include Local
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.
include Nested
Whether to include nested functions.
include Local
Whether to include local functions.