Improve notes on Rust Operators

This commit is contained in:
Marcello 2021-10-08 22:48:35 +02:00
parent 1fa5b32832
commit a7138f04db

View file

@ -108,7 +108,18 @@ Rust also has two primitive types for floating-point numbers, which are numbers
Rust's floating-point types are `f32` and `f64`, which are 32 bits and 64 bits in size, respectively. Rust's floating-point types are `f32` and `f64`, which are 32 bits and 64 bits in size, respectively.
The default type is `f64` because on modern CPUs it's roughly the same speed as `f32` but is capable of more precision. The default type is `f64` because on modern CPUs it's roughly the same speed as `f32` but is capable of more precision.
### Numeric Operation ### Numeric OPerators
| Operator | Operation |
|----------|---------------------|
| `>` | Greater than |
| `>=` | Greater or Equal to |
| `<` | Less than |
| `<=` | Less or Equal to |
| `==` | Equals |
| `!=` | Not Equals |
### Comparison Operators
| Operator | Operation | | Operator | Operation |
|----------|----------------| |----------|----------------|
@ -123,6 +134,19 @@ The default type is `f64` because on modern CPUs it's roughly the same speed as
Boolean types in Rust have two possible values: `true` and `false`. Boolean types in Rust have two possible values: `true` and `false`.
Booleans are one byte in size. The Boolean type in Rust is specified using `bool`. Booleans are one byte in size. The Boolean type in Rust is specified using `bool`.
### Bitwise Operators
| Operator | Operation |
|----------|-------------------|
| `&` | AND |
| `|` | OR |
| `&&` | SHORT-CIRCUIT AND |
| `||` | SHORT-CIRCUIT OR |
| `^` | XOR |
| `!` | NOT |
| `<<` | LEFT SHIFT |
| `>>` | RIGHT SHIFT |
### Character Types ### Character Types
Rust's `char` type is the language's most primitive alphabetic type. Rust's `char` type is the language's most primitive alphabetic type.