this post was submitted on 08 Dec 2023
622 points (96.4% liked)

Programmer Humor

32479 readers
247 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 11 months ago (5 children)

Isn't a Maybe enum equivalent to just using a return value of, for example, int | null with type warnings?

[–] [email protected] 2 points 11 months ago (4 children)

Not quite, because the Maybe enum is neither int nor null, but it's own, third thing. So before you can do any operations with the return value, you need to handle both cases that could occur

[–] [email protected] 5 points 11 months ago (3 children)

Isn't that also true with compile-time type checking though? Eg. 0 + x where x is int|null would be detected? I don't have much experience here so I could be wrong but I can't think of a case where they're not equivalent

[–] [email protected] 3 points 11 months ago
load more comments (2 replies)
load more comments (2 replies)
load more comments (2 replies)