WoW:API debugprofilestop: Difference between revisions

mNo edit summary
m (Move page script moved page API debugprofilestop to API debugprofilestop without leaving a redirect)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}
{{stub/API}}
Returns the amount of time since profiling was started.
elapsedMilliseconds = debugprofilestop();


debugprofilestop() returns sub-millisecond (floating point) values.
== Returns ==
; elapsedMilliseconds : Number - Time since profiling was started in milliseconds.


{{LUA}}
== Details ==
* Debug profiling provides a high-precision timer that can be used to profile code.
 
== See also ==
* {{api|debugprofilestart}}

Latest revision as of 04:45, 15 August 2023

WoW API < debugprofilestop

Returns the amount of time since profiling was started.

elapsedMilliseconds = debugprofilestop();

Returns

elapsedMilliseconds
Number - Time since profiling was started in milliseconds.

Details

  • Debug profiling provides a high-precision timer that can be used to profile code.

See also