Pop
Description
Pop the latest expression and return the input(s) of the popped expression.
Usage
<Expr>$meta$pop()
Value
A list of expressions which in most cases will have a unit length. This
is not the case when an expression has multiple inputs, for instance in
a $fold()
expression.
Examples
#> polars Expr: [(dyn float: 40.0) + (dyn float: 2.0)]
#> [[1]]
#> polars Expr: dyn float: 2.0
#>
#> [[2]]
#> polars Expr: dyn float: 40.0
#> polars Expr: dyn float: 42.0.sum()
#> [[1]]
#> polars Expr: 42.0