Thayne McCombs

Results 329 comments of Thayne McCombs

From what I understand, the main motivation for this is that it allows you to have consts and statics with unnameable types. Data on current usage of const and static...

> Use a type alias. If your const type is too complex, it will make it painful to use in downstream code. You can infer a complex type, but you...

Given that this is intended for cross-languange interfaces there should probably be a formal, mostly language agnostic specification of the ABI. Should this RFC discuss where that specification should go,...

@wez I'm willing to make a PR to fix this, but I'd like to better understand the purpose of the code waiting for the first configuration, so I don't break...

Is there a way to determine if the original BMP used 32 bpp?

Sorry, I should have been more clear. I meant, is there a way to get that information from the final `BufferedImage` returned by `ImageIO.read`? I think that ``` image.getType() ==...

This is what I ended up with: ```java if (image.getType() == BufferedImage.TYPE_INT_RGB) { int[] bandMasks = {0xff0000, 0xff00, 0xff, 0xff000000}; WritableRaster raster = Raster.createPackedRaster( image.getRaster().getDataBuffer(), image.getWidth(), image.getHeight(), image.getWidth(), bandMasks, null...

What is the impact on the `aws_security_group` resource? Currently it is the only way to have drift detection, but the diffs can sometimes be very difficult to read due to...