Laxystem

Results 24 issues of Laxystem

I've encountered some annyoances when using KotlinX Coroutines, and so I've decided to move my own scattered-around solutions into the library itself. * The functions to create empty collections/maps are...

I'm currently working on Khuzdul, a JsonLD library for Kotlin/Multiplatform. It's still WIP - and in fact, isn't even committed yet - but I've created this PR now just to...

### Please confirm the following. - [x] I checked the [existing issues](https://github.com/modrinth/code/issues) for duplicate problems - [x] I have tried resolving the issue using the [support portal](https://support.modrinth.com) - [x] I...

bug
app

I've completely replaced `ז` (taken from my own, unreleased pixel font of the same size) and `י`, and made minor modifications to the `כ` (to differentiate it from the `נ`...

Chasm looks like an incredibly cool project, and the possibilities are countless. The most natural extension to WASI support would be running containerized Kotlin/WasmWasi using Chasm, with access to specific...

This could be done fairly easily: ```kotlin suspend fun Flow.toPersistentList() = emptyPersistentHashList().mutate { toList(it) } ``` ```kotlin public suspend fun Flow.toMap(destination: M): M { collect { (key, value) -> destination[key]...

enhancement

The current implementation of sets and maps being 'ordered by default' is unintuitive as it isn't actually 'by default'; One would expect a persistent set to count as a persistent...

I implemented this using an existing class and an `extendable` boolean as I didn't want to break binary compatibility with existing usage of the `ByteStringBuilder` constructor, but it is possible...

This code: ```kotlin /** * The default value for [this] component type within this [ecs], overruling [Entity.default]. * * @since 0.0.1-alpha.4 */ context(ecs: Ecs) public val Entity.currentDefault: T get() =...

bug