Compute over private state
euint256
.
Name | Function | Type |
---|---|---|
Addition | e.add | Binary |
Subtraction | e.sub | Binary |
Multiplication | e.mul | Binary |
Division | e.div | Binary |
Remainder | e.rem | Binary |
BitAnd | e.and | Binary |
BitOr | e.or | Binary |
BitXor | e.xor | Binary |
Shift Right | e.shr | Binary |
Shift Left | e.shl | Binary |
Rotate Right | e.rotr | Binary |
Rotate Left | e.rotl | Binary |
Name | Function | Type | Returns |
---|---|---|---|
Equal | e.eq | Binary | ebool |
Not equal | e.ne | Binary | ebool |
Greater than or equal | e.ge | Binary | ebool |
Greater than | e.gt | Binary | ebool |
Less than or equal | e.le | Binary | ebool |
Less than | e.lt | Binary | ebool |
Min | e.min | Binary | euint256 |
Max | e.max | Binary | euint256 |
Not | e.not | Unary | ebool |