MCPcopy Create free account
hub / github.com/apache/datafusion / Lambda

Class Lambda

datafusion/expr/src/expr.rs:1451–1456  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1449/// A Lambda expression with a set of parameters names and a body
1450#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1451pub struct Lambda {
1452 /// The parameters names
1453 pub params: Vec<String>,
1454 /// The body expression
1455 pub body: Box<Expr>,
1456}
1457
1458impl Lambda {
1459 /// Create a new lambda expression

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…