All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generated._CollectionsJvm.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0-RC1
Show newest version
/*
 * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license 
 * that can be found in the license/LICENSE.txt file.
 */

@file:kotlin.jvm.JvmMultifileClass
@file:kotlin.jvm.JvmName("CollectionsKt")

package kotlin.collections

//
// NOTE: THIS FILE IS AUTO-GENERATED by the GenerateStandardLib.kt
// See: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib
//

import kotlin.*
import kotlin.text.*
import kotlin.comparisons.*

/**
 * Returns a list containing all elements that are instances of specified class.
 */
public fun  Iterable<*>.filterIsInstance(klass: Class): List {
    return filterIsInstanceTo(ArrayList(), klass)
}

/**
 * Appends all elements that are instances of specified class to the given [destination].
 */
public fun , R> Iterable<*>.filterIsInstanceTo(destination: C, klass: Class): C {
    @Suppress("UNCHECKED_CAST")
    for (element in this) if (klass.isInstance(element)) destination.add(element as R)
    return destination
}

/**
 * Reverses elements in the list in-place.
 */
public actual fun  MutableList.reverse(): Unit {
    java.util.Collections.reverse(this)
}

/**
 * Returns a [SortedSet][java.util.SortedSet] of all elements.
 */
public fun > Iterable.toSortedSet(): java.util.SortedSet {
    return toCollection(java.util.TreeSet())
}

/**
 * Returns a [SortedSet][java.util.SortedSet] of all elements.
 * 
 * Elements in the set returned are sorted according to the given [comparator].
 */
public fun  Iterable.toSortedSet(comparator: Comparator): java.util.SortedSet {
    return toCollection(java.util.TreeSet(comparator))
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy