Athari / YaLinqo

Yet Another LINQ to Objects for PHP [Simplified BSD]
https://athari.github.io/YaLinqo
BSD 2-Clause "Simplified" License
439 stars 39 forks source link

Replace Functions::compareStrict and compareLoose with spaceship operator #47

Open Athari opened 5 years ago

Athari commented 5 years ago

Remove compareStrict and compareLoose functions in Functions. Add compare function which is implemented using spaceship operayor (<=>).

compareStrict is unstable anyway (1 < '1' == false, 1 > '1' == false).