Re: Tool to measure the time a function takes to execute?

2020-12-27 Thread Kirill via Digitalmars-d-learn

On Monday, 28 December 2020 at 07:00:59 UTC, Ali Çehreli wrote:

On 12/27/20 10:24 PM, Kirill wrote:
Hello, is there a tool to measure the execution time of a 
function in D? Can the GC do it?


StopWatch and benchmark():

  https://dlang.org/phobos/std_datetime.html

Ali


Thanks Ali! That's exactly what I needed.


Re: Tool to measure the time a function takes to execute?

2020-12-27 Thread Ali Çehreli via Digitalmars-d-learn

On 12/27/20 10:24 PM, Kirill wrote:
Hello, is there a tool to measure the execution time of a function in D? 
Can the GC do it?


StopWatch and benchmark():

  https://dlang.org/phobos/std_datetime.html

Ali



Tool to measure the time a function takes to execute?

2020-12-27 Thread Kirill via Digitalmars-d-learn
Hello, is there a tool to measure the execution time of a 
function in D? Can the GC do it?