RosettaCodeData/Task/String-comparison/J/string-comparison-1.j

7 lines
342 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
eq=: -: NB. equal
ne=: -.@-: NB. not equal
gt=: {.@/:@,&boxopen *. ne NB. lexically greater than
lt=: -.@{.@/:@,&boxopen *. ne NB. lexically less than
ge=: {.@/:@,&boxopen +. eq NB. lexically greater than or equal to
le=: -.@{.@/:@,&boxopen NB. lexically less than or equal to