(a)
| 1119 | return OperationDoc(OperationKind.Invert, [a]) |
| 1120 | |
| 1121 | def not_(a): |
| 1122 | return OperationDoc(OperationKind.Not, [a]) |
| 1123 | |
| 1124 | def add(a, b): |
| 1125 | return OperationDoc(OperationKind.Add, [a, b]) |
no test coverage detected
searching dependent graphs…