forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Delta profile
angerangel edited this page Mar 15, 2013
·
1 revision
DELTA-PROFILE block
Delta-profile of running a specific block.
DELTA-PROFILE is a function value.
- block (block!)
#SOURCE
delta-profile: make function! [ [
"Delta-profile of running a specific block."
block [block!]
/local start end
][
start: values-of stats/profile
do block
end: values-of stats/profile
foreach num start [
change end end/1 - num
end: next end
]
start: make system/standard/stats []
set start head end
start
] ]