MCPcopy Create free account
hub / github.com/dask/dask / CatBlockwise

Class CatBlockwise

dask/dataframe/dask_expr/_str_accessor.py:126–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124
125
126class CatBlockwise(Blockwise):
127 _parameters = ["frame", "sep", "na_rep"]
128 _keyword_only = ["sep", "na_rep"]
129
130 @property
131 def _args(self) -> list:
132 return [self.frame] + self.operands[len(self._parameters) :]
133
134 @staticmethod
135 def operation(ser, *args, **kwargs):
136 return ser.str.cat(list(args), **kwargs)
137
138
139class Cat(Reduction):

Callers 1

catMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected