effect-bot

Results 58 issues of effect-bot

# Summary In the above conversation, the topic of overloading functions with refinements in `effect-ts` was discussed. The user expressed their frustration with having to use type assertions when working...

# Summary The discussion revolves around extending TaggedError to be used with Either.gen. Initially, it is mentioned that it may not be possible because the tag field is already taken...

# Summary In the above conversation, the user was troubleshooting an issue with `Effect.retry forever` not removing errors from typing. They were looking for a solution to remove errors completely....

# Summary The user was looking for a way to ignore errors in JavaScript without doing anything with them. They initially used `Effect.catchAll(() => Effect.ignore(Effect.unit))`, but were unsure if there...

# Summary In the conversation, the user initially asked why `Effect.log` was only being called once in their code. They were advised to fork the stream and use `yieldNow` to...

# Summary The discussion revolves around two topics: exposing `prettyErrors` and the usage of `TagProto`. Regarding `prettyErrors`, it is suggested to expose it to improve internal functionality. However, no specific...

# Summary In the discussion, we explored the possibility of having a `raceAllWith` function in the Effect-TS library, which would allow racing multiple effects with individual handling functions. While there...

# Summary The user is reporting a bug in the @effect/stream library where merging streams is causing a leaking handle. They are unsure if they are misusing the library or...

# Summary The conversation revolves around the desire for accessing the Effect blog through an RSS feed or a dedicated Discord channel. Users express interest in having a more streamlined...

# Summary In the above conversation, we discussed the problem of creating an `Effect` from a `Promise`. Initially, there was a suggestion to use `Effect.promiseEither` or `Effect.runPromiseExit` to achieve this....