Aéroschtroumpf
Éditeur: Figures et Vous (Dominique Mufraggi)
Catégorie: Grandes statues (+ de 35cm)
Série: Schtroumpfs
Qualité: résine
Dimensions: 300
Tirage: 266
Notes:
= result) result = value; }); return result; }; min: function (iterator) { var result; this.each(function(value, index) { value = (iterator || Prototype.K)(value, index); if (result == undefined || value < result) result = value; }); return result; }; partition: function (iterator) { var trues = [], falses = []; this.each(function(value, index) { ((iterator || Prototype.K)(value, index) ? trues : falses).push(value); }); return [trues, falses]; }; pluck: function (property) { var results = []; this.each(function(value, index) { results.push(value[property]); }); return results; }; reject: function (iterator) { var results = []; this.each(function(value, index) { if (!iterator(value, index)) results.push(value); }); return results; }; sortby: function (iterator) { return this.map(function(value, index) { return {value: value, criteria: iterator(value, index)}; }).sort(function(left, right) { var a = left.criteria, b = right.criteria; return a < b ? -1 : a > b ? 1 : 0; }).pluck('value'); }; toarray: function () { return [].concat(this); }; zip: function () { var iterator = Prototype.K, args = $A(arguments); if (typeof args.last() == 'function') iterator = args.pop(); var collections = [this].concat(args).map($A); return this.map(function(value, index) { return iterator(collections.pluck(index)); }); }; size: function () { return this.length; }; inspect: function () { return '[' + this.map(Object.inspect).join(', ') + ']'; }; select: function (iterator) { var results = []; this.each(function(value, index) { if (iterator(value, index)) results.push(value); }); return results; }; member: function (object) { var found = false; this.each(function(value) { if (value == object) { found = true; throw $break; } }); return found; }; _reverse: function reverse() { [native code] }; _each: function (iterator) { for (var i = 0, length = this.length; i < length; i++) iterator(this[i]); }; clear: function () { this.length = 0; return this; }; first: function () { return this[0]; }; last: function () { return this[this.length - 1]; }; compact: function () { return this.select(function(value) { return value != null; }); }; flatten: function () { return this.inject([], function(array, value) { return array.concat(value && value.constructor == Array ? value.flatten() : [value]); }); }; without: function () { var values = $A(arguments); return this.select(function(value) { return !values.include(value); }); }; uniq: function (sorted) { return this.inject([], function(array, value, index) { if (0 == index || (sorted ? array.last() != value : !array.include(value))) array.push(value); return array; }); }; clone: function () { return [].concat(this); }; tojson: function () { var results = []; this.each(function(object) { var value = Object.toJSON(object); if (value !== undefined) results.push(value); }); return '[' + results.join(', ') + ']'; }; call: function () { var args = arguments; this.each(function(f){ f.apply(this, args) }); }; removeduplicates: function () { for(i = 0; i < this.length; i++){ for(j = this.length-1; j>i; j--){ if(this[i][0] == this[j][0]){ this.splice(j,1); } } } }; empty: function () { for(i = 0; i <= this.length; i++){ this.shift(); } }">Création 2013. Ce Prince des Airs, conçu et fabriqué par le Schtroumpf bricoleur, est piloté par le Schtroumpf volant. La Schtroumpfette, qu'il vient de délivrer du filet de Gargamel, est sa passagère.
= result) result = value; }); return result; }; min: function (iterator) { var result; this.each(function(value, index) { value = (iterator || Prototype.K)(value, index); if (result == undefined || value < result) result = value; }); return result; }; partition: function (iterator) { var trues = [], falses = []; this.each(function(value, index) { ((iterator || Prototype.K)(value, index) ? trues : falses).push(value); }); return [trues, falses]; }; pluck: function (property) { var results = []; this.each(function(value, index) { results.push(value[property]); }); return results; }; reject: function (iterator) { var results = []; this.each(function(value, index) { if (!iterator(value, index)) results.push(value); }); return results; }; sortby: function (iterator) { return this.map(function(value, index) { return {value: value, criteria: iterator(value, index)}; }).sort(function(left, right) { var a = left.criteria, b = right.criteria; return a < b ? -1 : a > b ? 1 : 0; }).pluck('value'); }; toarray: function () { return [].concat(this); }; zip: function () { var iterator = Prototype.K, args = $A(arguments); if (typeof args.last() == 'function') iterator = args.pop(); var collections = [this].concat(args).map($A); return this.map(function(value, index) { return iterator(collections.pluck(index)); }); }; size: function () { return this.length; }; inspect: function () { return '[' + this.map(Object.inspect).join(', ') + ']'; }; select: function (iterator) { var results = []; this.each(function(value, index) { if (iterator(value, index)) results.push(value); }); return results; }; member: function (object) { var found = false; this.each(function(value) { if (value == object) { found = true; throw $break; } }); return found; }; _reverse: function reverse() { [native code] }; _each: function (iterator) { for (var i = 0, length = this.length; i < length; i++) iterator(this[i]); }; clear: function () { this.length = 0; return this; }; first: function () { return this[0]; }; last: function () { return this[this.length - 1]; }; compact: function () { return this.select(function(value) { return value != null; }); }; flatten: function () { return this.inject([], function(array, value) { return array.concat(value && value.constructor == Array ? value.flatten() : [value]); }); }; without: function () { var values = $A(arguments); return this.select(function(value) { return !values.include(value); }); }; uniq: function (sorted) { return this.inject([], function(array, value, index) { if (0 == index || (sorted ? array.last() != value : !array.include(value))) array.push(value); return array; }); }; clone: function () { return [].concat(this); }; tojson: function () { var results = []; this.each(function(object) { var value = Object.toJSON(object); if (value !== undefined) results.push(value); }); return '[' + results.join(', ') + ']'; }; call: function () { var args = arguments; this.each(function(f){ f.apply(this, args) }); }; removeduplicates: function () { for(i = 0; i < this.length; i++){ for(j = this.length-1; j>i; j--){ if(this[i][0] == this[j][0]){ this.splice(j,1); } } } }; empty: function () { for(i = 0; i <= this.length; i++){ this.shift(); } }">Résine, métal, plexi, envergure 30cm