|
Theory question: Should Are all empty maybes theoretically identical, or does their container type differentiate them, even though they're empty? |
Answered by
vkhorikov
Feb 26, 2022
Replies: 2 comments 1 reply
|
Interesting question. I would say they should be treated as different values, similar to how an empty |
1 reply
Answer selected by
lonix1
|
My previous response applies to cases like In your example, the non-generic |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Interesting question. I would say they should be treated as different values, similar to how an empty
List<string>is different from an emptyList<int>.