From a7138f04db77ec409af9d1223e1378573850c8e7 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 8 Oct 2021 22:48:35 +0200 Subject: [PATCH] Improve notes on Rust Operators --- Rust/Rust.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/Rust/Rust.md b/Rust/Rust.md index ba6d7d0..c9e70c1 100644 --- a/Rust/Rust.md +++ b/Rust/Rust.md @@ -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. 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 | |----------|----------------| @@ -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`. 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 Rust's `char` type is the language's most primitive alphabetic type.