Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 ⚔️
- Host: GitHub
- URL: https://github.com/purefuncinc/kotlin-extensions
- Owner: PureFuncInc
- License: mit
- Created: 2022-07-03T01:25:43.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T07:50:57.000Z (over 1 year ago)
- Last Synced: 2023-03-05T20:07:52.886Z (over 1 year ago)
- Topics: kotlin, kotlin-extensions
- Language: Kotlin
- Homepage:
- Size: 333 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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")
}
```