(
self,
sorts: impl IntoIterator<Item = impl Into<SortExpr>> + Clone,
)
| 804 | } |
| 805 | |
| 806 | pub fn sort( |
| 807 | self, |
| 808 | sorts: impl IntoIterator<Item = impl Into<SortExpr>> + Clone, |
| 809 | ) -> Result<Self> { |
| 810 | self.sort_with_limit(sorts, None) |
| 811 | } |
| 812 | |
| 813 | /// Apply a sort |
| 814 | pub fn sort_with_limit( |