MCPcopy Create free account
hub / github.com/agraef/pure-lang / tuple_expr

Function tuple_expr

pure/expr.cc:220–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220static expr tuple_expr(exprl::const_iterator it, exprl::const_iterator end)
221{
222 expr x = *it;
223 if (++it == end)
224 return x;
225 else
226 return expr::pair(x, tuple_expr(it, end));
227}
228
229expr expr::tuple(const exprl& xs)
230{

Callers 1

tupleMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected