MCPcopy Index your code
hub / github.com/python/mypy / write_int_list

Function write_int_list

mypy/cache.py:435–439  ·  view source on GitHub ↗
(data: WriteBuffer, value: list[int])

Source from the content-addressed store, hash-verified

433
434
435def write_int_list(data: WriteBuffer, value: list[int]) -> None:
436 write_tag(data, LIST_INT)
437 write_int_bare(data, len(value))
438 for item in value:
439 write_int_bare(data, item)
440
441
442def read_str_list(data: ReadBuffer) -> list[str]:

Callers 9

writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.90
writeMethod · 0.85

Calls 1

lenFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…