Pipe

From WikiManual
Revision as of 12:30, 11 August 2007 by MacadamiaNuts (talk | contribs) (New page: Picks two stack numbers and returns the OR comparison of their bytes. 0 0 | = 0 -1 0 | = -1 0 1 | = 1 1 1 | = 1 -1 1 | = -1 0 -1 | = -1 -1 -1 | = -1 When one of the numbers i...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Picks two stack numbers and returns the OR comparison of their bytes.

0  0 | =  0

-1 0 | = -1

0  1 | =  1
1  1 | =  1

-1 1 | = -1

0 -1 | = -1

-1 -1 | = -1

When one of the numbers is a power of 2, it adds both numbers.