arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

binops for strings

Open ajpotts opened this issue 11 months ago • 0 comments

Add binops :

  • "<",
  • "<=",
  • "==",
  • ">=",
  • ">",
  • "!="

for strings, similar to numpy:

In [6]: import numpy as np
In [7]: a = np.array(["a","b"])
In [8]: b = np.array(["a","c"])
In [9]: a < b
Out[9]: array([False,  True])

ajpotts avatar Mar 14 '24 17:03 ajpotts