2
votes
11answers
223 views
How to implement List, Set, and Map in null free design?
Its great when you can return a null/empty object in most cases to avoid nulls, but what about Collection like objects?
In Java, Map returns null if key in get(key) is not found in the map.
The best …
7
votes
11answers
854 views
When are you truly forced to use UUID as part of the design?
I don't really see the point of UUID. I know the probability of a collision is effectively nil, but effectively nil is not even close to impossible.
Can somebody give an example where you have no …
