📄 sortedlist.js
字号:
/* Copyright (c) 2004-2008, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details*/if(!dojo._hasResource["dojox.collections.SortedList"]){dojo._hasResource["dojox.collections.SortedList"]=true;dojo.provide("dojox.collections.SortedList");dojo.require("dojox.collections._base");dojox.collections.SortedList=function(_1){var _2=this;var _3={};var q=[];var _5=function(a,b){if(a.key>b.key){return 1;}if(a.key<b.key){return -1;}return 0;};var _8=function(){q=[];var e=_2.getIterator();while(!e.atEnd()){q.push(e.get());}q.sort(_5);};var _a={};this.count=q.length;this.add=function(k,v){if(!_3[k]){_3[k]=new dojox.collections.DictionaryEntry(k,v);this.count=q.push(_3[k]);q.sort(_5);}};this.clear=function(){_3={};q=[];this.count=q.length;};this.clone=function(){return new dojox.collections.SortedList(this);};this.contains=this.containsKey=function(k){if(_a[k]){return false;}return (_3[k]!=null);};this.containsValue=function(o){var e=this.getIterator();while(!e.atEnd()){var _10=e.get();if(_10.value==o){return true;}}return false;};this.copyTo=function(arr,i){var e=this.getIterator();var idx=i;while(!e.atEnd()){arr.splice(idx,0,e.get());idx++;}};this.entry=function(k){return _3[k];};this.forEach=function(fn,_17){dojo.forEach(q,fn,_17);};this.getByIndex=function(i){return q[i].valueOf();};this.getIterator=function(){return new dojox.collections.DictionaryIterator(_3);};this.getKey=function(i){return q[i].key;};this.getKeyList=function(){var arr=[];var e=this.getIterator();while(!e.atEnd()){arr.push(e.get().key);}return arr;};this.getValueList=function(){var arr=[];var e=this.getIterator();while(!e.atEnd()){arr.push(e.get().value);}return arr;};this.indexOfKey=function(k){for(var i=0;i<q.length;i++){if(q[i].key==k){return i;}}return -1;};this.indexOfValue=function(o){for(var i=0;i<q.length;i++){if(q[i].value==o){return i;}}return -1;};this.item=function(k){if(k in _3&&!_a[k]){return _3[k].valueOf();}return undefined;};this.remove=function(k){delete _3[k];_8();this.count=q.length;};this.removeAt=function(i){delete _3[q[i].key];_8();this.count=q.length;};this.replace=function(k,v){if(!_3[k]){this.add(k,v);return false;}else{_3[k]=new dojox.collections.DictionaryEntry(k,v);_8();return true;}};this.setByIndex=function(i,o){_3[q[i].key].value=o;_8();this.count=q.length;};if(_1){var e=_1.getIterator();while(!e.atEnd()){var _2a=e.get();q[q.length]=_3[_2a.key]=new dojox.collections.DictionaryEntry(_2a.key,_2a.value);}q.sort(_5);}};}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -