Re: RFR: 8314502: GrowableArray: Make find with comparator take template

2023-08-24 Thread David Holmes
On Thu, 24 Aug 2023 14:09:46 GMT, Afshin Zafari wrote: > The `find` method now is > ```C++ > template > int find(T* token, bool f(T*, E)) const { > ... > > Any other functions which use this are also changed. > Local linux-x64-debug hotspot:tier1 passed. Mach5 tier1 build on linux and > Window

Re: RFR: 8314502: GrowableArray: Make find with comparator take template

2023-08-24 Thread Johan Sjölen
On Thu, 24 Aug 2023 14:09:46 GMT, Afshin Zafari wrote: > The `find` method now is > ```C++ > template > int find(T* token, bool f(T*, E)) const { > ... > > Any other functions which use this are also changed. > Local linux-x64-debug hotspot:tier1 passed. Mach5 tier1 build on linux and > Window

Re: RFR: 8314502: GrowableArray: Make find with comparator take template

2023-08-24 Thread Johan Sjölen
On Thu, 24 Aug 2023 16:37:44 GMT, Johan Sjölen wrote: >> The `find` method now is >> ```C++ >> template >> int find(T* token, bool f(T*, E)) const { >> ... >> >> Any other functions which use this are also changed. >> Local linux-x64-debug hotspot:tier1 passed. Mach5 tier1 build on linux and >