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

io.github.serpro69.semverkt.release.ext.CollectionExtensions.kt Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package io.github.serpro69.semverkt.release.ext

/**
 * Returns this list of [T] element minus the `head` element.
 */
internal fun  List.tail() : List {
    return if (this.isEmpty()) emptyList() else this.takeLast(size-1)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy