-
Theory question: Should Are all empty maybes theoretically identical, or does their container type differentiate them, even though they're empty? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Interesting question. I would say they should be treated as different values, similar to how an empty |
Beta Was this translation helpful? Give feedback.
-
My previous response applies to cases like In your example, the non-generic |
Beta Was this translation helpful? Give feedback.
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>
.