Convenience constructor for array inputs
| 217 | Tiebreaker tiebreaker = RankOptions::First); |
| 218 | /// Convenience constructor for array inputs |
| 219 | explicit RankOptions(SortOrder order, NullPlacement null_placement, |
| 220 | Tiebreaker tiebreaker = RankOptions::First) |
| 221 | : RankOptions({SortKey("", order, null_placement)}, tiebreaker) {} |
| 222 | |
| 223 | explicit RankOptions(std::vector<SortKey> sort_keys = {}, |
| 224 | Tiebreaker tiebreaker = RankOptions::First); |