單邊 u: 應用於several kinds of引數:
引數 |
Result |
1-byte characters |
same as 2&u: |
2-byte characters |
copy of引數 |
整數s |
same as 4&u: |
inverse of 單邊 u: is 3&u:
|
|
雙邊 u: takes a scalar 整數左引數
and 應用於several kinds of引數:
左 |
右 |
|
Result |
1 |
2-byte characters |
|
1-byte characters; high order bytes are discarded |
2 |
1-byte characters |
|
2-byte characters; high order bytes are 0 |
3 |
2-byte characters |
|
整數s |
4 |
整數s |
|
2-byte characters; 整數s must be from 0 to 65535 |
5 |
2-byte characters |
|
1-byte characters; high order bytes must be 0 (and are discarded) |
6 |
1-byte characters |
|
2-byte characters; pairs of 1-byte characters are converted to 2-byte characters |
1&u: and 2&u: is an inverse pair,
as are 3&u: and 4&u: .
|