Handbook
Glossary
time-percentage ( num denom -- percentage )
Vocabulary
tools
.
profiler
.
sampling
.
private
Inputs
num
an
object
denom
an
object
Outputs
percentage
an
object
Definition
USING:
kernel
math
;
IN:
tools.profiler.sampling.private
:
time-percentage
( num denom -- percentage )
dup
zero?
[
2drop
0.0
]
[
[
100
*
]
dip
/f
]
if
;