Method: Polars::Config.set_auto_structify
- Defined in:
- lib/polars/config.rb
.set_auto_structify(active = true) ⇒ Config
Allow multi-output expressions to be automatically turned into Structs.
154 155 156 157 |
# File 'lib/polars/config.rb', line 154 def self.set_auto_structify(active = true) ENV["POLARS_AUTO_STRUCTIFY"] = active ? "1" : "0" self end |