thirdparty/jsdoctoolkit/app/test/shared.js
author Daniel Hans <Daniel.M.Hans@gmail.com>
Wed, 11 Nov 2009 21:04:13 +0100
changeset 3086 f3031537547a
parent 3041 c8f47f0b6697
permissions -rw-r--r--
NOTICE file added to the taggable module.


/**
 * 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.