Billy

Results 5 issues of Billy

I wanted a macro that takes a sub-generator and yields its elements. I wrote this: ``` macro yieldmany(resumable::Expr) return quote for x in $(esc(resumable)) @yield x end end end ```...

It's really helpful to see the instant difference before and after a change to the shader, but if the change takes more than one or two keystrokes to make, then...

I'm working on a raymarching shader that is currently very slow, and having my machine slow down drastically every time I start typing text makes it very hard to work....

Thanks for the quick response on the other Union issue. I actually found a new one: parsing into a union of multiple enums does not work. julia> @enum E A=1...

Would it be out-of-scope to add similar wrappers for `AbstractDictionary` and `AbstractSet`? There is a built-in `Base.ImmutableDict`, but my understanding is that it's a very particular structure with particular use-cases,...