John Galbraith

Results 11 comments of John Galbraith

It is also not clear to me yet how to best fix this for thread safety. Maybe it is sensible to change `static rand_engine_t` to `thread_local rand_engine_t`, but this would...

So I am tooling around way out of my expertise here, and floundered around for an hour on this issue as well. I am on Arch. I fixed this (I...

The way that this works basically is exactly that; just a `for` loop over a container (and, presumably, ranges will be similar and awesome). In my use, I actually have...

Jim, thanks for the guidance. I will call out @emil-e on this message too. After many fits and starts, I have an example that looks pretty cool. My first version...

Yeah, I am assuming that there will always be unsupported mettle features until every bit of `make_suite.hpp` and friends is adapted to accept a `suite_builder` subclass, either by template or...

Emil, that is a good suggestion to get better coverage on RapidCheck features. I have not yet actually tried the reproducing feature, so I was not thinking about it. 8-)...

I am in total agreement about the pros and cons of making a property just a special kind of test vs. it's own non-test stature. It reads way better to...

Looking at the example, it really shows that using: ``` _.test("my test", ...); ``` is really no more or less annoying that using: ``` test(_, "my test", ...); ``` One...

Hmm, clearly there would be multiple ways to play this, but my initial idea was to gain access to the replicant number in the `setup()` fixture. This "replicant number" is...

I am using this workaround: ``` glyphon::TextArea { ... scale: 1.0, ... } ``` and ``` let scale_factor = window.scale_factor() as f32; let metrics = glyphon::Metrics::new(14.0 * scale_factor, 14.0 *...