| 916 | } |
| 917 | |
| 918 | void export_function( |
| 919 | const std::string& file, |
| 920 | const std::function<std::vector<array>(const Args&)>& fun, |
| 921 | const Args& args, |
| 922 | bool shapeless /* = false */) { |
| 923 | exporter(file, fun, shapeless)(args); |
| 924 | } |
| 925 | |
| 926 | void export_function( |
| 927 | const std::string& file, |
no test coverage detected