1
vote
8answers
185 views
Implementation Patterns: a function returns a Date, but it is reasonable that a date won’t be found, return null or try to apply the NULL object pattern?
So let's say you have a function that returns a date
Date myFunc(paramA, paramB){
//conditionally return a date?
}
So is it appropriate to return null from this function? Th …
