An open API service indexing awesome lists of open source software.

https://github.com/fukaoi/benchmark-haxe

BenchMarking class for Haxe
https://github.com/fukaoi/benchmark-haxe

Last synced: about 1 month ago
JSON representation

BenchMarking class for Haxe

Awesome Lists containing this project

README

        

# BenchMark-Haxe

BenchMarking class for Haxe.

##Example

var bench = new BenchMark(Test, check, []);
bench.start(10);
bench.end();

##Parameters

new BenchMark(funk, obj, args);

* func:Target function or method
* obj:Setting this if func is instance method
* args:for func of parameter

bench.start(10);

* loopCount:number of times

##Reults

[target name] Test.check
[loop count] 10
[time] 0.011/sec