core/maxframe/dataframe/accessors/dict_/length.py [26:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, **kw):
        super().__init__(_output_types=[OutputType.series], **kw)

    def __call__(self, series):
        return self.new_series(
            [series],
            shape=series.shape,
            index_value=series.index_value,
            dtype=pd.ArrowDtype(pa.int64()),
            name=None,
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/maxframe/dataframe/accessors/list_/length.py [26:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, **kw):
        super().__init__(_output_types=[OutputType.series], **kw)

    def __call__(self, series):
        return self.new_series(
            [series],
            shape=series.shape,
            index_value=series.index_value,
            dtype=pd.ArrowDtype(pa.int64()),
            name=None,
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



