MCPcopy Index your code
hub / github.com/immutable-js/immutable-js / emptyOrderedMap

Function emptyOrderedMap

src/OrderedMap.js:112–117  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

110
111let EMPTY_ORDERED_MAP;
112export function emptyOrderedMap() {
113 return (
114 EMPTY_ORDERED_MAP ||
115 (EMPTY_ORDERED_MAP = makeOrderedMap(emptyMap(), emptyList()))
116 );
117}
118
119function updateOrderedMap(omap, k, v) {
120 const map = omap._map;

Callers 4

emptyOrderedSetFunction · 0.90
constructorMethod · 0.85
clearMethod · 0.85
__ensureOwnerMethod · 0.85

Calls 3

emptyMapFunction · 0.90
emptyListFunction · 0.90
makeOrderedMapFunction · 0.85

Tested by

no test coverage detected