9 * Extension to builtin array.
15 * @returns Boolen if some array members...
17 Array
.prototype.some
= function(){};
20 * Change every element of an array.
21 * @returns Filtered array copy.
23 Array
.prototype.filter
= function(){};
29 * A first in, first out data structure.
42 // should close automatically here.