11<!-- for main -->
22
3- [ ![ Download] ( https://img.shields.io/badge/Download-2.1 .0-%23007ec6 )] ( https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/2.1 .0 )
3+ [ ![ Download] ( https://img.shields.io/badge/Download-2.2 .0-%23007ec6 )] ( https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/2.2 .0 )
44[ ![ Apache license] ( https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg )] ( http://opensource.org/licenses/Apache2.0 )
55[ ![ Build Status Ubuntu] ( https://github.com/robstoll/kbox/workflows/Ubuntu/badge.svg?event=push )] ( https://github.com/robstoll/kbox/actions?query=workflow%3AUbuntu+branch%3Amain )
66[ ![ Build Status Windows] ( https://github.com/robstoll/kbox/workflows/Windows/badge.svg?event=push )] ( https://github.com/robstoll/kbox/actions?query=workflow%3AWindows+branch%3Amain )
77
88
99<!-- for a specific release -->
1010<!--
11- [](https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/2.1 .0)
11+ [](https://central.sonatype.com/artifact/ch.tutteli.kbox/kbox/2.2 .0)
1212[](http://opensource.org/licenses/Apache2.0)
1313-->
1414
1515# KBox
1616KBox is a very small but useful utility library for Kotlin (JVM, Android and JS) providing functions which are missing
1717in the stdlib such as:
18- - [ failIf] ( https://github.com/robstoll/kbox/tree/main /src/commonMain/kotlin/ch/tutteli/kbox/failIf.kt )
19- - [ takeIf] ( https://github.com/robstoll/kbox/blob/main /src/commonMain/kotlin/ch/tutteli/kbox/takeIf.kt )
20- - [ blankToNull] ( https://github.com/robstoll/kbox/blob/main /src/commonMain/kotlin/ch/tutteli/kbox/blankToNull.kt )
21- - [ isNotNullAndNotEmpty/Blank] ( https://github.com/robstoll/kbox/blob/main /src/commonMain/kotlin/ch/tutteli/kbox/isNotNullAndNot.kt )
22- - [ identity] ( https://github.com/robstoll/kbox/blob/main /src/commonMain/kotlin/ch/tutteli/kbox/identity.kt )
23- - [ Tuple4(Like) - Tuple9(Like)] ( https://github.com/robstoll/kbox/tree/main /src/commonMain/generated/kotlin/ch/tutteli/kbox )
18+ - [ failIf] ( https://github.com/robstoll/kbox/blob/v2.2.0 /src/commonMain/kotlin/ch/tutteli/kbox/failIf.kt )
19+ - [ takeIf] ( https://github.com/robstoll/kbox/blob/v2.2.0 /src/commonMain/kotlin/ch/tutteli/kbox/takeIf.kt )
20+ - [ blankToNull] ( https://github.com/robstoll/kbox/blob/v2.2.0 /src/commonMain/kotlin/ch/tutteli/kbox/blankToNull.kt )
21+ - [ isNotNullAndNotEmpty/Blank] ( https://github.com/robstoll/kbox/blob/v2.2.0 /src/commonMain/kotlin/ch/tutteli/kbox/isNotNullAndNot.kt )
22+ - [ identity] ( https://github.com/robstoll/kbox/blob/v2.2.0 /src/commonMain/kotlin/ch/tutteli/kbox/identity.kt )
23+ - [ Tuple4(Like) - Tuple9(Like)] ( https://github.com/robstoll/kbox/tree/v2.2.0 /src/commonMain/generated/kotlin/ch/tutteli/kbox )
2424 (including functions mapComponentX, append, glue)
25- - [ Triple/Pair.mapFirst/Second/Third] ( https://github.com/robstoll/kbox/tree/main /src/commonMain/generated/kotlin/ch/tutteli/kbox/tupleMap.kt#L12 )
25+ - [ Triple/Pair.mapFirst/Second/Third] ( https://github.com/robstoll/kbox/tree/v2.2.0 /src/commonMain/generated/kotlin/ch/tutteli/kbox/tupleMap.kt#L12 )
2626
2727and more, see the [ Documentation] ( https://robstoll.github.io/kbox/kdoc/ ) for a full list.
2828
@@ -33,7 +33,7 @@ KBox is published to maven central.
3333```
3434repositories { mavenCentral() }
3535dependencies {
36- implementation("ch.tutteli.kbox:kbox:2.1 .0")
36+ implementation("ch.tutteli.kbox:kbox:2.2 .0")
3737}
3838```
3939
0 commit comments