commonMain.extensions.Set.kt Maven / Gradle / Ivy
package io.fluidsonic.stdlib
public fun Set.intersects(other: Set): Boolean =
any { other.contains(it) }
package io.fluidsonic.stdlib
public fun Set.intersects(other: Set): Boolean =
any { other.contains(it) }