Method: Polars::Expr#eq_missing
- Defined in:
- lib/polars/expr.rb
#eq_missing(other) ⇒ Expr
Method equivalent of equality operator expr == other where nil == nil.
This differs from default eq where null values are propagated.
3803 3804 3805 3806 |
# File 'lib/polars/expr.rb', line 3803 def eq_missing(other) other = Utils.parse_into_expression(other, str_as_lit: true) wrap_expr(_rbexpr.eq_missing(other)) end |