Hi, It would be handy to have `Validation` provide a `concat` function. Something like: ``` javascript const R = require('ramda'); const concat = (v1, v2) => v1.cata({ Failure: (f1) => v2.isSuccess ? v1 : v2.failureMap(R.concat(f1)), Success: (s1) => v2 }); ``` Thanks.
Hi,
It would be handy to have
Validationprovide aconcatfunction. Something like:Thanks.