Re: RFR: 8324718: Add a static function to java.util.Objects to simplify object equality checks [v2]

2024-01-26 Thread David Alayachew
On Sat, 27 Jan 2024 04:21:02 GMT, David Alayachew wrote: >> Adding a function to Objects in order to facilitate equality checking and >> enhance readability. You simply specify the 2 objects that you want to check >> for equality, and then provide the functions which will be used to provide

Re: RFR: 8324718: Add a static function to java.util.Objects to simplify object equality checks [v2]

2024-01-26 Thread David Alayachew
On Sat, 27 Jan 2024 04:21:02 GMT, David Alayachew wrote: >> Adding a function to Objects in order to facilitate equality checking and >> enhance readability. You simply specify the 2 objects that you want to check >> for equality, and then provide the functions which will be used to provide

Re: RFR: 8324718: Add a static function to java.util.Objects to simplify object equality checks [v2]

2024-01-26 Thread David Alayachew
> Adding a function to Objects in order to facilitate equality checking and > enhance readability. You simply specify the 2 objects that you want to check > for equality, and then provide the functions which will be used to provide > the values that we will check for equality. David Alayachew