I need to make map where Dates are keys. 2 date objects are equals if they have the same value of getTime() method.
I'm interested only in year, month and day. How can I trim unnecessary hours and minutes to get 'clear' dates?
|
|
|
Use a custom
Oh, |
||||
|
You can create a
And use it like:
...
Here's a complete working sample:
output:
|
|||||||||||
|
This pushes insignificant values below the decimal, then integer division truncates it, so only values significant at the Day level and higher are left. If you want to make those dates again, just apply the offset back to the truncated values:
|
||||
|
|
|
Just convert your
|
|||
|
|