Adithya Kumar

Results 125 comments of Adithya Kumar
trafficstars

We use `MutableByteArray#` as we perform a lot of immutable ops using mutable array combinators. If we use `ByteArray#`, we'll have to thaw-and-freeze it at a lower level, which should...

Should the usage of `ParserK.toParser` be encouraged?

Bugs targeted to `0.10.0` https://github.com/composewell/streamly/issues?q=is%3Aopen+is%3Aissue+label%3Atype%3Abug+milestone%3A0.10.0 All of them can be pushed to `0.10.1`. None of them are critical.

TODO: - [ ] Make revision on hackage streamly for `file-path` (https://github.com/composewell/streamly/pull/2639) - [ ] Make revision on hackage streamly for `streamly-core`

Practical use-case: `bytestring-0.10`: ``` data ByteString = Empty | Chunk_ Strict.Bytestring ``` `bytestring-0.12` ``` data ByteString = Empty | Chunk Strict.Bytestring ```

Pushing this to 0.12.0. This is a nice feature to have but we can think about it later.

We can proceed further with this once we have the reference of the doc where this knowledge is gleaned from.

The commit might be lost, see the patch file below for more context: ``` From f6d6c78d966a3cb283fe578bae4187b9860ae1cc Mon Sep 17 00:00:00 2001 From: Adithya Kumar Date: Thu, 13 Jul 2023 23:47:05...

> Out of curiosity, how did you run afoul if those warnings? I've currently used a few files in this library to fix a few version bounds for my project....

As an addendum, the following crashes silently as well, ``` $if (xs)$ foo $endif$ ``` Notice the space between `if` and `(`. Although not a big deal, It would be...