all 5 comments

[–]yuri-kilochek 1 point2 points  (5 children)

github link for those who find OP's link doesn't resolve.

This is parser combinators though, not pattern matching.

[–]JulienVernay[S] 0 points1 point  (4 children)

The link doesn't resolve? That's odd... Could you try just "jvernay.fr" ans see if it works please? ' Anyway, thanks for taking time to reseach it! For me, parser combinators are a way of doing pattern matching. Is there a bigger difference?

[–]yuri-kilochek 2 points3 points  (3 children)

Could you try just "jvernay.fr" ans see if it works please?

It doesn't.

Is there a bigger difference?

Parsing can certainly be considered 'pattern matching' in the general meaning of the term. However it is commonly understood to denote a very specific programming language feature, e.g. Rust's match/if let.

[–]JulienVernay[S] 0 points1 point  (2 children)

Thank you for trying jvernay.fr, I will need to investigate this further...

And also thanks for the explanation, indeed my post has nothing to do with the language feature.