io.github.serpro69.semverkt.release.ext.CollectionExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semver.kt-release Show documentation
Show all versions of semver.kt-release Show documentation
https://github.com/serpro69/semver.kt
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)
}