rlwhitcomb / utilities

Some of my personal utility programs
MIT License
2 stars 0 forks source link

Allow the unary operators ("-" and "+") on numeric arrays to return what you'd expect #626

Closed rlwhitcomb closed 1 year ago

rlwhitcomb commented 1 year ago

As in:

a = [1,2,3]
-a -> [-1,-2,-3]