first-commit

This commit is contained in:
Peter 'Pita' Martischka 2011-03-26 13:10:41 +00:00
commit 325c322a27
207 changed files with 35989 additions and 0 deletions

View file

@ -0,0 +1,42 @@
/**
* Builtin object.
* @class
* @name Array
*/
/**#@+
* Extension to builtin array.
* @memberOf Array
* @method
*/
/**
* @returns Boolen if some array members...
*/
Array.prototype.some = function(){};
/**
* Change every element of an array.
* @returns Filtered array copy.
*/
Array.prototype.filter = function(){};
/**#@-*/
/**
* A first in, first out data structure.
* @constructor
*/
Queue = function(){};
/**#@+
* Extension to Queue.
* @memberOf Queue
*/
rewind = function(){
}
// should close automatically here.