Home | History | Annotate | Download | only in dm

Lines Matching refs:Rest

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