Home | History | Annotate | Download | only in dm

Lines Matching refs:Rest

253     template <typename... Rest>
254 static constexpr int max_of(int x, Rest... rest) {
255 return x > max_of(rest...) ? x : max_of(rest...);
694 // few sample sizes. Skip the rest.