render.rs
render.rs copied to clipboard
if macro?
I've found that quite often I want to output an element only if a certain condition is true. Currently that means I have to use an if expression that returns an Option, which is rather cumbersome. Should render provide an if macro to make this nicer?
Have definitely run into this one myself.