(a, b)
| 1128 | return OperationDoc(OperationKind.Sub, [a, b]) |
| 1129 | |
| 1130 | def mult(a, b): |
| 1131 | return OperationDoc(OperationKind.Mult, [a, b]) |
| 1132 | |
| 1133 | def div(a, b): |
| 1134 | return OperationDoc(OperationKind.Div, [a, b]) |
no test coverage detected
searching dependent graphs…