currentTime : HasIO io => io Integer Get the current time in milliseconds since 1970/01/01.
Visibility: exporttimed : (Integer -> e) -> Cmd e -> Cmd e Determine the time taken to setup a command and wrap it in an
event that will be fired synchronously.
Visibility: exportdata IntervalID : Type ID used to identify and cancel a running timer.
Totality: total
Visibility: public exportevery : e -> Bits32 -> Cmd e Fires the given event every `n` milliseconds.
Note: Use `animate` for smoothly running animations.
Visibility: exporteveryWithCleanup : (IO () -> e) -> e -> Bits32 -> Cmd e Fires the given event every `n` milliseconds.
In addition, this synchronously fires an event with a wrapped
handle for stopping the timer.
Visibility: exportDTime : Type Alias for a time delta in milliseconds
Visibility: public exportanimate : (DTime -> e) -> Cmd e Repeatedly fires the given event holding the time delta in
milliseconds since the last animation step.
Visibility: exportanimateWithCleanup : (IO () -> e) -> (DTime -> e) -> Cmd e Repeatedly fires the given event holding the time delta in
milliseconds since the last animation step.
In addition, synchronously fires an event with a wrapped
handle for stopping the animation.
Visibility: export