Returns the number of elements that can be stored in the `LexOrdering` without reallocating.
(&self)
| 407 | /// Returns the number of elements that can be stored in the `LexOrdering` |
| 408 | /// without reallocating. |
| 409 | pub fn capacity(&self) -> usize { |
| 410 | self.exprs.capacity() |
| 411 | } |
| 412 | |
| 413 | /// Truncates the `LexOrdering`, keeping only the first `len` elements. |
| 414 | /// Returns `true` if truncation made a change, `false` otherwise. Negative |