Handbook
Glossary
microseconds ( x -- duration )
Calendar
ยป
Using durations
Prev:
milliseconds ( x -- duration )
Next:
nanoseconds ( x -- duration )
Vocabulary
calendar
Inputs
x
a
number
Outputs
duration
a
duration
Word description
Creates a duration object with the specified number of microseconds.
See also
years
,
months
,
days
,
hours
,
minutes
,
seconds
,
milliseconds
,
nanoseconds
Definition
USING:
math
;
IN:
calendar
:
microseconds
( x -- duration )
1000000
/
seconds
;