Skip to content

linktosriram/kext4j

Repository files navigation

Build Status

kext4j

Kotlin Extension Functions for Java.

Implementation of kotlin extension methods for Java.

Currently in-progress:

Provided functions

StringUtils

Example

import static io.github.linktosriram.kext4j.text.StringUtils.*;

map("hello world", Character::toUpperCase);     // [H, E, L, L, O,  , W, O, R, L, D]
filter("Hello World", Character::isUpperCase);  // "HW"
groupBy("Hello World", Character::isUpperCase); // {true=[H, W], false=[e, l, l, o,  , o, r, l, d]}

License

This project is licensed under the MIT license. See the LICENSE file for more info.

About

Kotlin Extension Functions for Java

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages