-
Since Java 21 it's possible to use pattern matching for records. For API users it would be nice if they could use this feature to destructure SpectateResponse and OpenResponse.
We can make publicly…
-
Thank you for this great project!
I try to play online m3u8 url stream stations. Some of them work well, but another failed.
for example, url: https://radiopull.radiofoshan.com.cn/live/140082094…
-
As in the title, it's not currently possible to document Structs created using the `@data` macro; adding a docstring above them results in an error. (You can attach the docstring further down, but tha…
-
Hello,
Using DeriveGen with a recursive data structure like a Tree produces a Gen that takes reaaaaly long time to run before I kill it or I get OOM. Here is an example:
```scala
package com.abd…
-
We would like to use a polymorphic ADT as the message protocol between two Streamlets. Let's say for example I would like to design a `SubscriptionProtocol` with the following commands:
- `SubscribeC…
-
Since we support pairs, we ought to support arbitrary product types including records. Having custom records leads to much better code than tuples.
This can probably be done with Template Haskell or …
-
I implement a user base class to support some of the Abstract Data Types (lists etc) and sorting codes I've implemented. It contains no data but defines dummy procedures for things I need to do to sup…
rweed updated
3 years ago
-
From this [comment](https://github.com/AlexsLemonade/scpca-nf/pull/364#discussion_r1254599659)
> Oh, one more comment, which I don't want to make hold this up: When we have a lot of ADTs, this tabl…
-
**Describe the bug**
**To Reproduce**
```scala
@discriminator("type", phantom = true)
sealed trait Command
object Command {
@discriminatorKey("m") //WORKS
case class Move(meters: Int)…
-
Trying to encode an mpegts segment with the AAC encoder. I keep getting the following error when encoding.
**AAC bitstream not in ADTS format and extradata missing**
After some research it appears …