curry-cost (v2)

Revision 2 of this benchmark created by dev on


Preparation HTML

<script src="https://cdn.rawgit.com/ramda/ramda/v0.10.0/dist/ramda.min.js"></script>
<script src="https://cdn.rawgit.com/lodash/lodash/3.5.0/lodash.min.js"></script>
<script src="https://jspm.io/system@0.14.js"></script>
<script>
System.import('npm:lodash-fp').then(function(lodashfp) {
  fp = lodashfp;
  R.customDiff = R.curryN(2, R.flip(R.nAry(2, _.difference)));
  document.getElementById('run').style.display = '';
});

document.getElementById('run').style.display = 'none';
</script>

Setup

var objects = _.times(500, function() { return {}; }),
      array1 = _.shuffle(objects.concat(objects)),
      array2 = _.shuffle(array1);

Test runner

Ready to run.

Testing in
TestOps/sec
R.difference
var r = R.difference(array2, array1);
ready
R.difference curried
var r = R.difference(array2)(array1);
ready
R.customDiff
var r = R.customDiff(array2, array1);
ready
R.customDiff curried
var r = R.customDiff(array2)(array1);
ready
fp.difference
var r = fp.difference(array2, array1);
ready
fp.difference curried
var r = fp.difference(array2)(array1);
ready

Revisions

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