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

Function exprs

saffron/src/parse.rs:1054–1062  ·  view source on GitHub ↗
(iter: I)

Source from the content-addressed store, hash-verified

1052 use super::*;
1053
1054 fn exprs<E, I>(iter: I) -> Exprs<E>
1055 where
1056 I: IntoIterator<Item = OrsExpr<E>>,
1057 {
1058 let mut iter = iter.into_iter();
1059 let first = iter.next().expect("Iterator must have at least one item");
1060 let tail = iter.collect();
1061 Exprs { first, tail }
1062 }
1063
1064 fn e<E>(value: u8) -> E
1065 where

Callers

nothing calls this directly

Calls 2

into_iterMethod · 0.80
nextMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…