문제

Is there a bitwise NOT operator included in D2? If not, what's an alternative? Will ! just work? I'm guessing it won't because if it did !1 would equal true, which it doesn't.

도움이 되었습니까?

해결책

From the comments:

The correct way to do it is using the Complement Expression. (~1 as opposed to !1)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top