Rebol 编程/outside?
外观
OUTSIDE? p1 p2
如果第二对的 X 或 Y 大于第一对,则为 TRUE。
OUTSIDE? 是一个函数值。
outside?: func [
{TRUE if either X and Y of the second pair are greater than the first.}
p1 [pair!]
p2 [pair!]
][
found? any [p2/x > p1/x p2/y > p1/y]
]