Calculates the [`SortProperties`] of this function based on its children's properties.
(&self, inputs: &[ExprProperties])
| 365 | /// Calculates the [`SortProperties`] of this function based on its |
| 366 | /// children's properties. |
| 367 | pub fn output_ordering(&self, inputs: &[ExprProperties]) -> Result<SortProperties> { |
| 368 | self.inner.output_ordering(inputs) |
| 369 | } |
| 370 | |
| 371 | pub fn preserves_lex_ordering(&self, inputs: &[ExprProperties]) -> Result<bool> { |
| 372 | self.inner.preserves_lex_ordering(inputs) |