| 174 | */ |
| 175 | template <typename T, typename U> |
| 176 | CartesianProductDataset<T, U> combine(T &&dataset1, U &&dataset2) |
| 177 | { |
| 178 | return CartesianProductDataset<T, U>(std::forward<T>(dataset1), std::forward<U>(dataset2)); |
| 179 | } |
| 180 | |
| 181 | /** Helper function to create a @ref CartesianProductDataset. |
| 182 | * |
no outgoing calls
no test coverage detected