bor
&
^
~
<<
>>
8.18
top
← prev up next →

bitwise-opsπŸ”— i

David K. Storrs

Aliases Racket bitwise functions to the common symbolic names from other languages.

procedure

( bor v...)exact-integer?

Alias for (bitwise-ior v... ). In most languages this would be |, but that’s a special character for the Racket reader.

procedure

( & v...)exact-integer?

Alias for (bitwise-and v... )

procedure

( ^ v...)exact-integer?

Alias for (bitwise-xor v... )

procedure

( ~ n)exact-integer?

Alias for (bitwise-not v... )

procedure

( << ab)exact-integer?

Alias for (arithmetic-shift ab)

procedure

( >> ab)exact-integer?

Alias for (arithmetic-shift a(* -1b))

top
← prev up next →

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /