Monomorphic Forms

Benchmark created by BretCameron on


Setup

function multiply(x, y) {
    return x * y;
  };
  
  let x = 2, y = 3;

Test runner

Ready to run.

Testing in
TestOps/sec
Polymorphic
multiply(x, y);
ready
Monomorphic
multiply(2, 3);
ready

Revisions

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

  • Revision 1: published by BretCameron on