Sha256: 8017ca504e8caa5926f90585344b9b643aab3dfe232bbb3d70b3aae240553dcf
Contents?: true
Size: 549 Bytes
Versions: 203
Compression:
Stored size: 549 Bytes
Contents
/** * 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.
Version data entries
203 entries across 141 versions & 14 rubygems