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
So, because I didn't know how to use Piston very well when I first wrote this and the code is old af (for Rust code), the code is pretty messy right now. It needs to be cleaned up in a major way.
The text was updated successfully, but these errors were encountered:
error[E0554]:#![feature] may not be used on the stable release channel
--> src/life.rs:1:1
|
1 | #![feature(conservative_impl_trait)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The problem with that is that stuff like this would need to be changed to use Box<Iterator> rather than impl Iterator. It's not too much of an issue I suppose, but it means there would be a lot of unnecessary memory allocations.
In any case, I may change the algorithm entirely as it can get quite slow right now when there are too many blocks.
So, because I didn't know how to use Piston very well when I first wrote this and the code is old af (for Rust code), the code is pretty messy right now. It needs to be cleaned up in a major way.
The text was updated successfully, but these errors were encountered: