Expand description
Inference of binary and unary operators.
Enumsยง
- BinOp
Category ๐
Functionsยง
- deref_
ty_ ๐if_ possible - Dereferences a single level of immutable referencing.
- is_
builtin_ ๐binop - Returns
trueif this is a built-in arithmetic operation (e.g., u32 + u32, i16x4 == i16x4) and false if these types would have to be overloaded to be legal. There are two reasons that we distinguish builtin operations from overloaded ones (vs trying to drive everything uniformly through the trait system and intrinsics or something like that): - is_
op_ ๐by_ value - Returns
trueif the binary operator takes its arguments by value.