max

From The K Language Wiki
Revision as of 06:41, 9 July 2022 by Promovicz (talk | contribs) ("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Max
x|y

max, also known as or, takes the maximum of two arguments.

On boolean arguments, effectively works as an OR operator.

The max primitive is fully atomic.

 3 5 7|0 6 9
3 6 9

 "abc"|"01d"
97 98 100