with All Functions Named
fun <T : KoFunctionProvider> List<T>.withAllFunctionsNamed(name: String, vararg names: String, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations that have all specified functions.
Return
A list containing declarations with all specified function(s).
Parameters
name
The name of the function to include.
names
The name(s) of the function(s) to include.
include Nested
Whether to include nested functions.
include Local
Whether to include local functions.
fun <T : KoFunctionProvider> List<T>.withAllFunctionsNamed(names: Collection<String>, includeNested: Boolean = true, includeLocal: Boolean = true): List<T>
List containing declarations that have all specified functions.
Return
A list containing declarations with all specified function(s).
Parameters
names
The name(s) of the function(s) to include.
include Nested
Whether to include nested functions.
include Local
Whether to include local functions.