SPC-code

Results 35 comments of SPC-code

It would be best if you could clarify what use case do you have. What input and output data formats and what additional parameters do you have. It it is...

Does this seem correct? ```kotlin @OptIn(UnsafeIoApi::class) private fun ByteArray.asSource(): Source = Buffer().apply { UnsafeBufferOperations.moveToTail(this, this@asSource) } ```

Kotlinx-io now covers multiplatform input and output. And it now includes Wasm support.

I did not know about that feature. I will add it to new release. For now, you can use custom fields like this: ```kotlin import space.kscience.dataforge.meta.set import space.kscience.dataforge.meta.spec import space.kscience.dataforge.names.asName...

(on behalf of @altavir) Looks nice. I definitely like blocks more than modifier. It follows the overall tendency of using scopes to designate changes of code block semantics. It also...

I also like `MyClass.namespace.something()` much better than `MyClass.static.something()`.

I have mixed impression. On one hand, the proposed syntax is optional so it should be possible just to skip this part if needed. On the other hand, I tried...

I can add that separate kts editor is on demand. Currently even IDEA and Fleet do not allow to edit .kts files properly. It would be great to be able...

@czengler Nice to meet you. The idea of this issue is to create an `Algebra` that operates on booleans and then add an integration with `MST` symbolic expressions. It will...