MCPcopy
hub / github.com/dask/dask / max

Method max

dask/bag/core.py:1081–1083  ·  view source on GitHub ↗

Maximum element

(self, split_every=None)

Source from the content-addressed store, hash-verified

1079 return self.reduction(sum, sum, split_every=split_every)
1080
1081 def max(self, split_every=None):
1082 """Maximum element"""
1083 return self.reduction(max, max, split_every=split_every)
1084
1085 def min(self, split_every=None):
1086 """Minimum element"""

Callers 5

test_starmapFunction · 0.45
test_reductionsFunction · 0.45
test_reduction_emptyFunction · 0.45
test_tokenize_hlgFunction · 0.45

Calls 1

reductionMethod · 0.95

Tested by 5

test_starmapFunction · 0.36
test_reductionsFunction · 0.36
test_reduction_emptyFunction · 0.36
test_tokenize_hlgFunction · 0.36