| 573 | /// A set of expressions with at least one item. |
| 574 | #[derive(Debug, Clone, PartialEq, Eq)] |
| 575 | pub struct Exprs<E> { |
| 576 | /// The first expression |
| 577 | pub first: OrsExpr<E>, |
| 578 | /// The rest of the other expressions in the set. |
| 579 | pub tail: Vec<OrsExpr<E>>, |
| 580 | } |
| 581 | |
| 582 | /// An immutable iterator over all expressions in a set of [`Exprs`] |
| 583 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…