MCPcopy Create free account
hub / github.com/Monibuca/engine / Range

Method Range

util/map.go:66–71  ·  view source on GitHub ↗
(f func(K, V))

Source from the content-addressed store, hash-verified

64}
65
66func (m *Map[K, V]) Range(f func(K, V)) {
67 m.Map.Range(func(k, v interface{}) bool {
68 f(k.(K), v.(V))
69 return true
70 })
71}
72
73func (m *Map[K, V]) RangeSorted(f func(K, V), compare func(K, K) bool) {
74 // Collect keys and values

Callers 15

API_list_pullMethod · 0.45
API_list_pushMethod · 0.45
GetAnnexBMethod · 0.45
PlayBlockMethod · 0.45
WriteAVCCMethod · 0.45
CompleteRTPMethod · 0.45
CompleteAVCCMethod · 0.45
CompleteAVCCMethod · 0.45
CompleteRTPMethod · 0.45
CompleteAVCCMethod · 0.45
CompleteAVCCMethod · 0.45
WriteMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected