You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is a great idea or a terrible one, but I'm imagining something where we pass C++ iterators as the arguments. By doing this all functions would look something like this pseudo-code:
constexpr T operator()(double delta, std::vector<T>::const_iterator begin, std::vector<T>::const_iterator end) noexcept {
// so we have a range within a vector now between begin and end
// that might be 2 samples or 4 or 8, etc...
// but we should be able figure that out and do the right thing...
}
I'm not sure if this would solve all our ills or just create new ones, but it make sense to explore this further.
The text was updated successfully, but these errors were encountered:
Quoting from @tap during discussion of this pull request:
I don't know if this is a great idea or a terrible one, but I'm imagining something where we pass C++ iterators as the arguments. By doing this all functions would look something like this pseudo-code:
I'm not sure if this would solve all our ills or just create new ones, but it make sense to explore this further.
The text was updated successfully, but these errors were encountered: