REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: delta-profile

delta-profile  block

Delta-profile of running a specific block.

Arguments:

block [block!]

See also:

delta-time   dp   dt  

Description

Provides detailed profiling information captured during the evaluation of a block.

See Profiler for detailed examples.

Simple example:

>> dp [loop 10 [next "a"]]
== make object! [
    timer: 39
    evals: 31
    eval-natives: 14
    eval-functions: 1
    series-made: 1
    series-freed: 0
    series-expanded: 0
    series-bytes: 432
    series-recycled: 0
    made-blocks: 1
    made-objects: 0
    recycles: 0
]


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin