Witold Szczerba

Results 13 issues of Witold Szczerba

# Disclaimer First of all I must say: this library is great! # Background Few days ago I had to write 7 decoders for 7 different currency rate providers and...

I think it would be useful to be able to define encoder like this: ```fsharp type SomeXY = X of string | Y let decodeSomeXY = function | X s...

enhancement
discussion

I try to extract the value inside Maybe with `undefined` as Nothing: `errors = mappedErrors.valueOr(undefined)` Trouble is, the `` does not allow me to default to `undefined`. What is that...

I use Ionide-VSCode and it uses FsAutoComplete and… it uses whatever Fantomas version it was set in it's last release. On the other hand, there are building scripts and they...

# 🚀 Feature Request In order to make public API endpoints easy to set up, we must do everything to: - minimize the work required to setup the environment (just...

enhancement

The `ThreadLocalTxManager` has this method: ```java @Override public T txUnwrappedResult(UnitOfWorkCall unit) throws Exception { begin(); try { T result = unit.call(); commit(); return result; } catch (Exception e) { rollback();...

bug

I do not know who invented this, but look: [C# – Characteristics of the floating-point types](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/floating-point-numeric-types#characteristics-of-the-floating-point-types) C# type/keyword | Approximate range | Precision | Size | .NET type -- |...

In my app, by mistake, I did manually `ackEnv` a message received by a channel in the `NoAck` mode. The application did not crash, but the query consumer was silently...