You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(Value): use Foldable combinators for succeeded and extractValue
Replace explicit pattern matching with more idiomatic Foldable combinators:
- `succeeded = not . null` - checks if result is non-empty (success)
- `extractValue = foldr const err` - extracts value or errors on failure
This leverages BuiltinResult's Foldable instance for more concise code.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments