| 702 | |
| 703 | template <int N, class X> |
| 704 | CUTE_HOST_DEVICE constexpr |
| 705 | auto |
| 706 | tuple_repeat(X const& x) |
| 707 | { |
| 708 | return detail::construct(0, x, seq<>{}, make_seq<N>{}, seq<>{}); |
| 709 | } |
| 710 | |
| 711 | // |
| 712 | // Make repeated Xs of rank N |
nothing calls this directly
no test coverage detected