Hacker News new | ask | show | jobs
by Scriptor 3499 days ago
I'm assuming Person is a record constructor, is isValid here a field in that record or another function?
1 comments

Haskell doesn't distinguish the two. If you define Person with named fields including isValid, you automatically get a function named isValid that returns that field, or you can write your own isValid function that examines the whole Person.