Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
2098
def
_max(seq):
2099
if
isinstance(seq, _HashIdWrapper):
2100
seq = seq.wrapped
2101
return
max(seq)
2102
2103
2104
def
cached_max(seq):
Callers
1
cached_max
Function · 0.85
Calls
1
max
Function · 0.85
Tested by
no test coverage detected