|
58 | 58 | * ^ |
59 | 59 |
|
60 | 60 | # Equals to another object. |
| 61 | + # A condition where two objects have the same value or content. |
61 | 62 | [b] > eq /org.eolang.bool |
62 | 63 |
|
63 | 64 | # Total number of bytes. |
| 65 | + # The complete count of bytes used to represent data. |
64 | 66 | [] > size /org.eolang.number |
65 | 67 |
|
66 | 68 | # Represents a sub-sequence inside the current one. |
|
102 | 104 | "Can't convert non 2 length bytes to i16, bytes are %x" |
103 | 105 | * ^ |
104 | 106 |
|
105 | | - # Calculate bitwise and. |
| 107 | + # Calculate the bitwise and operation. |
106 | 108 | [b] > and /org.eolang.bytes |
107 | 109 |
|
108 | | - # Calculate bitwise or. |
| 110 | + # Calculate the bitwise or operation. |
109 | 111 | [b] > or /org.eolang.bytes |
110 | 112 |
|
111 | | - # Calculate bitwise xor. |
| 113 | + # Calculate the bitwise xor operation. |
112 | 114 | [b] > xor /org.eolang.bytes |
113 | 115 |
|
114 | | - # Calculate bitwise not. |
| 116 | + # Calculate the bitwise not operation. |
115 | 117 | [] > not /org.eolang.bytes |
116 | 118 |
|
117 | | - # Calculate bitwise left shift. |
| 119 | + # Calculate the bitwise left shift. |
118 | 120 | ^.right x.neg > [x] > left |
119 | 121 |
|
120 | | - # Calculate bitwise right shift. |
| 122 | + # Calculate the bitwise right shift. |
121 | 123 | [x] > right /org.eolang.bytes |
122 | 124 |
|
123 | 125 | # Concatenation of two byte sequences: |
|
0 commit comments