nebula.plugin.resolutionrules.extensions.kt Maven / Gradle / Ivy
package nebula.plugin.resolutionrules
import java.util.regex.Matcher
inline fun Collection.mapToSet(transform: (T) -> R): Set {
return mapTo(LinkedHashSet(size), transform)
}
fun Matcher.matches(input: CharSequence) =
reset(input).matches()
© 2015 - 2025 Weber Informatics LLC | Privacy Policy