Parse, don’t validate

@abnv yea honestly that's how i usually build my validation schemes whenever i'm not forced into a specific validation system. validation can be forgotten, but parsing is required to move forward.

that's why i really dislike the validator systems there is, for example, in Symfony and similar web frameworks

@SRAZKVT yeah. I prefer it as well. One disadvantage that I see is validators usually return all validation errors whereas parsers usually stop on first error.
@abnv in a web context i much prefer getting all errors straight away in the ui instead of one by one, but yea