https://github.com/goquati/kotlin-util
Enhanced Kotlin collection functions for simpler code
https://github.com/goquati/kotlin-util
kotlin
Last synced: about 2 months ago
JSON representation
Enhanced Kotlin collection functions for simpler code
- Host: GitHub
- URL: https://github.com/goquati/kotlin-util
- Owner: goquati
- License: mit
- Created: 2024-06-27T11:44:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-12T14:48:06.000Z (about 2 months ago)
- Last Synced: 2025-05-12T15:54:18.658Z (about 2 months ago)
- Topics: kotlin
- Language: Kotlin
- Homepage: https://goquati.github.io/kotlin-util/
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kotlin Util Libraries


This repository hosts a collection of Kotlin utility libraries designed to simplify code development. The modules span across various functionalities, offering multiplatform support.
## Subprojects
### 1. `kotlin-util`
Enhanced Kotlin utility functions for streamlined coding.### 2. `kotlin-util-coroutine`
Utility functions to facilitate working with Kotlin coroutines.### 3. `kotlin-util-csv`
A type-safe CSV writing library with coroutine support. See [kotlin-util-csv/README.md](kotlin-util-csv/README.md)### 4. `kotlin-util-cache`
Kotlin wrapper for the Caffeine caching library (JVM only).### 5. `kotlin-util-logging`
SLF4J helper functions for Kotlin (JVM only).## Installation
Each subproject is available as a separate dependency. Include the relevant ones in your `build.gradle.kts`:
```kotlin
implementation("io.github.goquati:kotlin-util:$VERSION")
implementation("io.github.goquati:kotlin-util-coroutine:$VERSION")
implementation("io.github.goquati:kotlin-util-csv:$VERSION")
// For JVM-only:
implementation("io.github.goquati:kotlin-util-cache:$VERSION")
implementation("io.github.goquati:kotlin-util-logging:$VERSION")
```## Documentation
For more detailed documentation, visit the [official site](https://goquati.github.io/kotlin-util/).
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
## Contributions
Contributions are welcome! Feel free to open an issue or submit a pull request. Please ensure that your code adheres to the existing coding standards and includes appropriate tests.