with Type Parameter Named
fun <T : KoTypeParameterProvider> List<T>.withTypeParameterNamed(name: String, vararg names: String): List<T>
List containing declarations that have at least one type parameter with the specified name(s).
Return
A list containing declarations with at least one of the specified type parameter(s).
Parameters
name
The name of the type parameter to include.
names
The names of additional type parameters to include.
fun <T : KoTypeParameterProvider> List<T>.withTypeParameterNamed(names: Collection<String>): List<T>
List containing declarations that have at least one type parameter with the specified name(s).
Return
A list containing declarations with at least one of the specified type parameter(s).
Parameters
names
The names of additional type parameters to include.