MCPcopy Create free account
hub / github.com/cloudflare/saffron / Exprs

Class Exprs

saffron/src/parse.rs:575–580  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573/// A set of expressions with at least one item.
574#[derive(Debug, Clone, PartialEq, Eq)]
575pub 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///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…