I am trying to use the new unique mask function added in Dyalog v. 18, but it seems that it doesn't work on nested arrays.
≠¨('aabbcc')('ddeeff')
SYNTAX ERROR: The function requires a left argument
≠¨('aabbcc')('ddeeff')
∧
I figured it would return this
┌→──────────┬───────────┐
│1 0 1 0 1 0│1 0 1 0 1 0│
└~─────────→┴~─────────→┘
but maybe I'm not understanding how it works? Thanks in advance.