(a)
| 1116 | return OperationDoc(OperationKind.USub, [a]) |
| 1117 | |
| 1118 | def invert(a): |
| 1119 | return OperationDoc(OperationKind.Invert, [a]) |
| 1120 | |
| 1121 | def not_(a): |
| 1122 | return OperationDoc(OperationKind.Not, [a]) |
no test coverage detected
searching dependent graphs…