module Polars::Selectors

def self.first(strict: true)

Other tags:
    Example: Select everything *except* for the first column: -
    Example: Select the first column: -

Returns:
  • (Selector) -
def self.first(strict: true)
  Selector._from_rbselector(RbSelector.first(strict))
end