Math.Floor vs ~~ (v2)

Revision 2 of this benchmark created on


Setup

var pi = 3.14159265359;

Test runner

Ready to run.

Testing in
TestOps/sec
Math.floor
var final = Math.floor(pi);
ready
~~
var final = ~~pi;
ready
OR
var final = 0|(pi);
ready

Revisions

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