Fork me on GitHub
#matcher-combinators
<
2022-12-14
>
Phillip Mates17:12:46

I'm curious what folks think about the idea of adding seq-of and either combinators to the library https://github.com/nubank/matcher-combinators/pull/191 on one side it feels nice to keep most of the library's surface area limited, with it focusing on describing match logic mostly using the data-structures themselves. on the other had, being able to compose more complex match logic means you can make very fine-grained assertions without escaping out to writing custom clojure assertion logic

ericdallo21:12:24

I find it extremely helpful @phillipmates! I found myself multiple times needing this kind of match

nice 1