Home
last modified time | relevance | path

Searched refs:subSubSendableMap (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/test/sharedtest/sharedmap/
Dsharedmap.ts303 let subSubSendableMap = new SubSubSendableMap<number, string>(); variable
304 subSubSendableMap.set(1, 'one');
305 print(subSubSendableMap.has(1));
306 print(subSubSendableMap.size);
310 subSubSendableMap = new SubSubSendableMap<string, Object>([['object', obj]]);
311 print(subSubSendableMap.size);
316 subSubSendableMap = new SubSubSendableMap<number, string>([
327 subSubSendableMap.forEach((value: string, key: number, map: SubSubSendableMap) => {