MCPcopy Create free account
hub / github.com/FastLED/FastLED / items

Method items

ci/util/symbol_analysis.py:99–101  ·  view source on GitHub ↗

Return items for iteration, sorted by total_size descending

(self)

Source from the content-addressed store, hash-verified

97 self.stats[sym_type].total_size += symbol.size
98
99 def items(self) -> list[tuple[str, TypeBreakdown]]:
100 """Return items for iteration, sorted by total_size descending"""
101 return sorted(self.stats.items(), key=lambda x: x[1].total_size, reverse=True)
102
103 def values(self) -> list[TypeBreakdown]:
104 """Return values for iteration"""

Callers 15

generate_reportFunction · 0.95
mainFunction · 0.80
list_test_casesFunction · 0.80
coding_standardsFunction · 0.80
build_info_analysisFunction · 0.80
esp32_symbol_analysisFunction · 0.80
mainFunction · 0.80
cloneMethod · 0.80
mainFunction · 0.80
fix_iwyu_violationsFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls