-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what is the point of timestep? #7
Comments
I was following what Elm does. They don't use it anywhere either. In send and recv it's just a nice to have, I guess. You can distinguish one signal propagation from another, also gives a pure function feel to things. The #9 removes it. |
We talked last week about the idea of throttling updates. E.g. updating plots according to a slider can lag if it tries to redraw on every intermediate value. Would timestamps be necessary to implement that? I've been looking through the Elm documentation, it seems like we may eventually want to implement some of the functions in Time, like |
You can create Also see this discussion: https://groups.google.com/forum/#!topic/elm-discuss/YcvPwhcq_sU |
A node that needs to timing can always call |
There are no timesteps now. I discussed this with Evan and it turns out this is used in a concurrent FRP context, which I will not look into right now. |
Why bother passing
time()
when the dependencies are updated? I don't understand the need for this.The text was updated successfully, but these errors were encountered: