Lines Matching refs:dict

24 …te](#setimmediate), etc. Some additional features such as [dictionaries](#dict) or [extended parti…
78 - [Dict](#dict)
154 npm run grunt build:core.dict,es6 -- --blacklist=es6.promise,es6.math --library=on --path=custom ug…
156 Where `core.dict` and `es6` are modules (namespaces) names, which will be added to the build, `es6.…
166 modules: ['es6', 'core.dict'], // modules / namespaces
2005 Module [`core.dict`](https://github.com/zloirock/core-js/blob/v2.6.12/modules/core.dict.js). Based …
2007 [new] Dict(iterable (entries) | object ?) -> dict
2030 core-js(/library)/core/dict
2031 core-js(/library)/fn/dict
2044 var dict = Dict({a: 42});
2045 dict instanceof Object; // => false
2046 dict.a; // => 42
2047 dict.toString; // => undefined
2048 'a' in dict; // => true
2049 'hasOwnProperty' in dict; // => false
2058 var dict = {a: 1, b: 2, c: 3};
2060 for(var key of Dict.keys(dict))console.log(key); // => 'a', 'b', 'c'
2062 for(var val of Dict.values(dict))console.log(val); // => 1, 2, 3
2064 for(var [key, val] of Dict.entries(dict)){
2069 new Map(Dict.entries(dict)); // => Map {a: 1, b: 2, c: 3}
2071 Basic dict operations for objects with prototype [*examples*](http://goo.gl/B28UnG):
2103 var dict = {a: 1, b: 2, c: 3};
2105 Dict.forEach(dict, console.log, console);
2110 Dict.map(dict, function(it){
2114 Dict.mapPairs(dict, function(val, key){
2118 Dict.filter(dict, function(it){
2122 Dict.some(dict, function(it){
2126 Dict.every(dict, function(it){
2130 Dict.find(dict, function(it){
2133 Dict.find(dict, function(it){
2137 Dict.findKey(dict, function(it){
2140 Dict.findKey(dict, function(it){
2144 Dict.keyOf(dict, 2); // => 'b'
2145 Dict.keyOf(dict, 4); // => undefined
2147 Dict.includes(dict, 2); // => true
2148 Dict.includes(dict, 4); // => false
2150 Dict.reduce(dict, function(memo, it){
2153 Dict.reduce(dict, function(memo, it){