MCPcopy Index your code
hub / github.com/dask/dask / map_blocks

Method map_blocks

dask/array/_array_expr/_collection.py:579–582  ·  view source on GitHub ↗
(self, func, *args, **kwargs)

Source from the content-addressed store, hash-verified

577 return self.map_blocks(chunk.astype, dtype=dtype, astype_dtype=dtype, **kwargs)
578
579 def map_blocks(self, func, *args, **kwargs):
580 from dask.array._array_expr._map_blocks import map_blocks
581
582 return map_blocks(func, self, *args, **kwargs)
583
584 @property
585 def _elemwise(self):

Calls 1

map_blocksFunction · 0.90