(a, b)
| 1125 | return OperationDoc(OperationKind.Add, [a, b]) |
| 1126 | |
| 1127 | def sub(a, b): |
| 1128 | return OperationDoc(OperationKind.Sub, [a, b]) |
| 1129 | |
| 1130 | def mult(a, b): |
| 1131 | return OperationDoc(OperationKind.Mult, [a, b]) |
nothing calls this directly
no test coverage detected