XAMPPRocky
XAMPPRocky
Thank you for issue! I remember when I implemented `--files` I thought about whether there should be a `--directories` option, and my initial thought was that output isn't likely to...
Thank you for your issue! This should be simple to add to `languages.JSON`
Thank you for your PR! Sorry for the late reply, but it seems the count is slightly off, would you be able to address that?
Updated title to reflect that this currently affects all `Option`'s for example this provides the same error. ```rust pub fn foo () -> Option { Some(5u8) } ``` ``` error:...
Adding this as another thing that needs options, which is `num_traits::Float::powi`, it uses an `.unwrap` in it's code when converting to usize. https://github.com/rust-num/num-traits/blob/319623616822ab8d77ba0422dc63ed4ff5b9a809/src/float.rs#L684 ```rust #[test] fn powi() { val(r#" fn...
> Oh right, that's where I was suggesting &mut MaybeUninit on Discord for Output. Small note that, that is blocked on #415
@jarble Closures are currently supported.
We discussed this at the meeting today, and the consensus that we're generally in favour of idea of adding storage buffers, and we really like the style of using iterators...
If it's just those it might be fine, though as far as I can tell the spec allows for much more combinations (for example you could have `texture` with `Lod`,`Bias`,...
> Note that "dynamically" passing in values (like the builder methods, or arguments to a method) runs into compiler implementation difficulty Well the builder itself could be passed in a...