| 1172 | struct GroupedFirstLastFactory { |
| 1173 | template <typename T> |
| 1174 | enable_if_physical_integer<T, Status> Visit(const T&) { |
| 1175 | using PhysicalType = typename T::PhysicalType; |
| 1176 | kernel = MakeKernel(std::move(argument_type), FirstLastInit<PhysicalType>, |
| 1177 | /*ordered*/ true); |
| 1178 | return Status::OK(); |
| 1179 | } |
| 1180 | |
| 1181 | Status Visit(const FloatType&) { |
| 1182 | kernel = |
nothing calls this directly
no test coverage detected