Rebol 程式設計/and
外觀
value1 AND value2
返回第一個值與第二個值進行 AND 操作的結果。
AND 是一個操作值。
- value1 -- (型別: 邏輯數字符元組二進位制字串影像)
- value2 -- (型別: 邏輯數字符元組二進位制字串影像)
and: native[
"Returns the first value ANDed with the second."
value1 [logic! number! char! tuple! binary! string! image!]
value2 [logic! number! char! tuple! binary! string! image!]
]