Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/purefuncinc/kotlin-extensions

our cool kotlin extensions ⚔️
https://github.com/purefuncinc/kotlin-extensions

kotlin kotlin-extensions

Last synced: 9 days ago
JSON representation

our cool kotlin extensions ⚔️

Awesome Lists containing this project

README

        

# kotlin-extensions 🗿

> Let's create useful extensions together.

## Sample Code 📜

* [Aes](docs/aes.md)
* [ByteArray](docs/bytearray.md)
* [Hash](docs/hash.md)
* [List](docs/list.md)
* [Number](docs/number.md)
* [Regex](docs/regex.md)
* [SnowflakeSeq](docs/snowflakeseq.md)
* [String](docs/string.md)
* [Time](docs/time.md)

## Dependency [![Release](https://jitpack.io/v/PureFuncInc/kotlin-extensions.svg)](https://jitpack.io/#PureFuncInc/kotlin-extensions)

* Maven

```xml

...



jitpack.io
https://jitpack.io



com.github.PureFuncInc
kotlin-extensions
$version

...

```

* Gradle Groovy

```groovy
repositories {
maven { url "https://jitpack.io" }
}

dependencies {
implementation "com.github.PureFuncInc:kotlin-extensions:$version"
}
```

* Kotlin Gradle DSL

```kotlin
repositories {
maven {
url = uri("https://jitpack.io")
}
}

dependencies {
implementation("com.github.PureFuncInc:kotlin-extensions:$version")
}
```