John A. De Goes

Results 148 issues of John A. De Goes

Happens only after upgrade: ``` java.lang.NoClassDefFoundError: Could not initialize class java.lang.StackTraceElement$HashedModules ``` Running on Azure JDK.

documentation

Scala Native does not support multi-threading, but that shouldn't be an issue, generally, because ZIO shares CPU between fibers. Just need to make sure no blocking code is used in...

scala-native

**ISSUE** There is a way to go from `Chunk[Byte]` (or after #6849, `Chunk[Int]`/`Chunk[Long]`) to `Chunk[Boolean]`, with efficient / specialized operations designed for packed bits. However, the reverse operators do not...

ziohackathon

**ISSUE** In ZIO 2, `WeakConcurrentBag` is used for storing root fibers. However, this structure has not been optimized, which means if there are large number of daemon fibers, it may...

ziohackathon

It should be possible for ZIO Test to interrupt wayward scope closure: ```scala ZIO.addFinalizer(ZIO.uninterruptible(ZIO.never)) ```

# Checklist - [ ] **Core** - [ ] **Type** - [x] **Leibniz** - [x] **Liskov** - [x] **AList** - [ ] ... - [ ] **Data** - [ ]...

scalaz8

Currently, `EqClass` is defined as so: ```scala trait EqClass[A] { def equal(first: A, second: A): Boolean } ``` Unfortunately, we have no guarantee that such implementations of `equal` will first...

scalaz8
good first issue

### IO - [X] `Monad` - [X] `Bifunctor` - [ ] `MonadPlus`, `Alternative` ### Fiber - [x] `Applicative` - [x] `Monoid` ### Schedule - [ ] `Applicative` - [ ]...

scalaz8
good first issue

Now that Scalaz 8 depends on ZIO (which defaults to `Either` and `Option`), some convenience functions are missing. This ticket is to introduce such convenience functions by adding methods to...

scalaz8
good first issue