| 531 | FunctionTable(bool shapeless = false) : shapeless(shapeless) {}; |
| 532 | struct Function { |
| 533 | Function( |
| 534 | std::vector<std::string> kwarg_keys, |
| 535 | std::vector<array> inputs, |
| 536 | std::vector<array> outputs, |
| 537 | std::vector<array> tape) |
| 538 | : kwarg_keys(std::move(kwarg_keys)), |
| 539 | inputs(std::move(inputs)), |
| 540 | outputs(std::move(outputs)), |
| 541 | tape(std::move(tape)) {} |
| 542 | |
| 543 | std::vector<std::string> kwarg_keys; |
| 544 | std::vector<array> inputs; |
nothing calls this directly
no outgoing calls
no test coverage detected