NoDefaultRule
does nothing if the position 0 0
is tested with a NOTINDEX
(whereas it works "as expected" with INDEX
or if the position 0 0
is not tested).
For example, test 1
and test 2
give exactly the same result (I tried with empty and full tiles, including some with index 84 and some without) but they should not. However, if the position 0 0
is not tested with a NOTINDEX
as in test 3
and test 4
, NoDefaultRule
gives the...import std;
int main() {
std::println("Hello World");
}
cpp doesn't even look that scary with c++23 import std;
int main() {
std::println("Hello World");
}
cpp doesn't even look that scary with c++23 std::format
and co is the best thing to happen to c++ in a decadestd::format
and co is the best thing to happen to c++ in a decade std::format("It is {:%H:%M} now", std::chrono::system_clock::now())
std::format("It is {:%H:%M} now", std::chrono::system_clock::now())
std::formatter
for your type you can get it to format anythingstd::formatter
for your type you can get it to format anything async fn fib(n: u32) -> u32 {
match n {
0 | 1 => 1,
_ => Box::pin(fib(n-1)).await + Box::pin(fib(n-2)).await
}
}
Result
was not the correct variable to use to index the operation names array, instead it should be what is returned from the selection popup.
Fixes #8135.