Page 1 of 1

Unable to use EACH in combinators on RHS?

Posted: Sun Feb 23, 2020 6:21 am
by rain9441
Does anyone know why we cannot use EACH on the RHS of a combinator setting?

I want to do:

Input: 1024 / EACH
Output: EACH

I am unable to select EACH on the RHS, therefor I am unable to divide by each. For +, *, AND, OR, and XOR it's not an issue. For - it is mildly annoying. For /, %, ^, <<, and >>, it is blocking.

I tried searching for information but I could not find anything. Any thoughts?

Re: Unable to use EACH in combinators on RHS?

Posted: Sun Feb 23, 2020 12:50 pm
by MEOWMI
As a replacement, are you able to do EACH / 1024 followed by EACH ^ -1 or even EACH ^ -1 and then EACH * 1024?

Would be neat if they added that as a feature but somehow I don't feel like they're up to it.

Re: Unable to use EACH in combinators on RHS?

Posted: Sun Feb 23, 2020 3:14 pm
by rain9441
No, you cannot do EACH ^ -1, it is always 0.