#functional-programming
Read more stories on Hashnode
Articles with this tag
It took me a few tries to finally call an HTTP endpoint using F#.I've ended up with this code: let result = async { let client = new...
I'm a big proponent of using delegates instead of interfaces as described here. Recently I've found out that it works wonderfully with the partial...
using SAFE Dojo ยท Recently I've finally dug a bit deeper into the SAFE stack.One of the most exciting resources to start with full-stack F# applications...
How often do you see an email represented as a string? Or a currency field being a decimal type? Did you ever consider that something is wrong with...
I've seen many ways to deal with date and time. Hiding it behind an interface, a static class with a single property, ambient context, you name it. I...
Working with collections of custom types in xUnit always felt clumsy. To pass such a set of data, you had either create a property or a whole...