Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goquati/kotlin-util
Enhanced Kotlin collection functions for simpler code
https://github.com/goquati/kotlin-util
kotlin
Last synced: 8 days 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 (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-30T10:10:49.000Z (16 days ago)
- Last Synced: 2024-10-30T11:21:17.099Z (16 days ago)
- Topics: kotlin
- Language: Kotlin
- Homepage: https://goquati.github.io/kotlin-util/
- Size: 123 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
![GitHub License](https://img.shields.io/github/license/goquati/kotlin-util)
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/goquati/kotlin-util/check.yml)
![Static Badge](https://img.shields.io/badge/coverage-100%25-success)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.### 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 repository is licensed under the MIT License.
## 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.