one fable-low hijack cell
pair Rust / decay
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked Rust (first-offered)
· classifierA
· tiernone
response (200 chars)
It looks like you might be asking about two related Rust gotchas — here's both:
## `^` is XOR, not exponentiation
In Rust, `^` is **bitwise XOR**, not "to the power of":
```rust
let x = 2 ^ 3; // =
neighbors