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

Function _max

dask/utils.py:2098–2101  ·  view source on GitHub ↗
(seq)

Source from the content-addressed store, hash-verified

2096
2097@functools.lru_cache
2098def _max(seq):
2099 if isinstance(seq, _HashIdWrapper):
2100 seq = seq.wrapped
2101 return max(seq)
2102
2103
2104def cached_max(seq):

Callers 1

cached_maxFunction · 0.85

Calls 1

maxFunction · 0.85

Tested by

no test coverage detected