https://github.com/aecsocket/kbeam
Generic data structure implementations and algorithms for Kotlin
https://github.com/aecsocket/kbeam
Last synced: 8 months ago
JSON representation
Generic data structure implementations and algorithms for Kotlin
- Host: GitHub
- URL: https://github.com/aecsocket/kbeam
- Owner: aecsocket
- License: mit
- Created: 2023-07-11T16:01:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-13T16:09:32.000Z (over 2 years ago)
- Last Synced: 2025-02-23T19:24:28.800Z (about 1 year ago)
- Language: Kotlin
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KBeam
[](https://github.com/aecsocket/kbeam/actions/workflows/build.yml)
[](https://central.sonatype.com/artifact/io.github.aecsocket/kbeam)
[](https://central.sonatype.com/artifact/io.github.aecsocket/kbeam)
Generic data structure implementations and algorithms for Kotlin
### [GitHub](https://github.com/aecsocket/kbeam) · [Dokka](https://aecsocket.github.io/kbeam/dokka)
Provides general tools for manipulating, representing and storing data as well as data flow. The
name is inspired by the [Rust `crossbeam` crate](https://crates.io/crates/crossbeam), which focuses
on concurrent data structures.
There is no user documentation; see the Dokka page to get API docs.
## Usage
See the version badges for the latest release and snapshot builds.
```kotlin
repositories {
mavenCentral()
// for snapshot builds
// maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
implementation("io.github.aecsocket", "kbeam", "VERSION")
}
```