(a, b)
| 1140 | return OperationDoc(OperationKind.Pow, [a, b]) |
| 1141 | |
| 1142 | def lshift(a, b): |
| 1143 | return OperationDoc(OperationKind.LShift, [a, b]) |
| 1144 | |
| 1145 | def bit_and(a, b): |
| 1146 | return OperationDoc(OperationKind.BitAnd, [a, b]) |
no test coverage detected
searching dependent graphs…