Open
Description
Is your feature request related to a problem? Please describe.
Currently, Series.prototype.boolOps
cannot perform any comparisons on Strings or Dates other than ["eq", "ne"]
operators for Strings.
It seems like a decision has been made by the developers to explicitly not allow these types of comparisons from taking place.
Describe the solution you'd like
Correct use of comparison logic should be the responsibility of the user. The native comparison operators used by the logic in boolOps are perfectly capable of performing accurate comparisons with Strings and Dates. I do not believe that users should be disallowed from comparing strings or dates directly.