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