mixin fun (v11)

Revision 11 of this benchmark created by Angus on


Preparation HTML

<script>
  //1
  var circleFns = {
      area: function() {
          return Math.PI * this.radius * this.radius;
      },
      grow: function() {
          this.radius++;
      },
      shrink: function() {
          this.radius--;
      }
  }
  
  //2
  var asCircle = function() {
          this.area = function() {
              return Math.PI * this.radius * this.radius;
          };
          this.grow = function() {
              this.radius++;
          };
          this.shrink = function() {
              this.radius--;
          };
      }
  
      //3
  var asCircleCached = (function() {
      var area = function() {
              return Math.PI * this.radius * this.radius;
          };
      var grow = function() {
              this.radius++;
          };
      var shrink = function() {
              this.radius--;
          };
      return function() {
          this.area = area, this.grow = grow, this.shrink = shrink;
      }
  })();
  
  //4
  Function.prototype.curry = function() {
      var fn = this;
      var args = [].slice.call(arguments, 0);
      return function() {
          return fn.apply(this, args.concat([].slice.call(arguments, 0)));
      }
  }
  
  //4
  var asCircleCachedAndCurried = (function() {
      var area = function() {
              return Math.PI * this.radius * this.radius;
          };
      var grow = function(growBy) {
              this.radius += growBy;
          };
      var shrink = function(shrinkBy) {
              this.radius -= shrinkBy;
          };
      return function(options) {
          this.area = area, this.grow = grow.curry(options['growBy']), this.shrink = shrink.curry(options['shrinkBy'])
      }
  })();
  
  //5
  var asCircleWithOptions = function(options) {
          this.area = function() {
              return Math.PI * this.radius * this.radius;
          };
          this.grow = function() {
              this.radius += options.growBy;
          };
          this.shrink = function() {
              this.radius -= options.shrinkBy;
          };
      }
  
      //set up test constructor
  var CircularObject = function(radius) {
          this.radius = radius
      };
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
old style
CircularObject.prototype = {};
for (var k in circleFns) {
    if (circleFns.hasOwnProperty(k)) {
        CircularObject.prototype[k] = circleFns[k]
    };
}
var obj = new CircularObject(4);
obj.shrink();
ready
new style
CircularObject.prototype = {};
asCircle.call(CircularObject.prototype);
var obj = new CircularObject(4);
obj.shrink();
ready
new style w/ caching
CircularObject.prototype = {};
asCircleCached.call(CircularObject.prototype);
var obj = new CircularObject(4);
obj.shrink();
ready
new style w/caching and options
CircularObject.prototype = {};
asCircleCachedAndCurried.call(
CircularObject.prototype, {
    growBy: 2,
    shrinkBy: 2
});
var obj = new CircularObject(4);
obj.shrink();
ready
new style uncached w/options
CircularObject.prototype = {};
asCircleWithOptions.call(
CircularObject.prototype, {
    growBy: 2,
    shrinkBy: 2
});
var obj = new CircularObject(4);
obj.shrink();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.