kotlin.collections.intersect

intersect

infix fun <T> Iterable<T>.intersect(
    other: Iterable<T>
): Set<T>

Returns a set containing all elements that are contained by both this set and the specified collection.

The returned set preserves the element iteration order of the original collection.

infix fun <T> Array<out T>.intersect(
    other: Iterable<T>
): Set<T>
infix fun ByteArray.intersect(
    other: Iterable<Byte>
): Set<Byte>
登录查看完整内容