feat(Vector)

This commit is contained in:
2025-07-23 10:36:50 +03:00
parent 83c491ff6f
commit aca4539ce4
21 changed files with 1103 additions and 1533 deletions

View File

@ -6,13 +6,13 @@ A data structures library based on iterators, inspired by libstdc++
| Operator | Naming |
| ----------- | ------------- |
| `+` | add |
| `-` | sub |
| `+=` | add |
| `-=` | sub |
| `++obj` | inc |
| `--obj` | dec |
| `*` | mul |
| `/` | div |
| `%` | mod |
| `*=` | mul |
| `/=` | div |
| `%=` | mod |
| `==` | eq |
| `!=` | neq |
| `<` | a.cmp(b) < 0 |
@ -24,6 +24,8 @@ A data structures library based on iterators, inspired by libstdc++
| `=` && | move |
| `*obj` | deref |
| `&obj` | ref |
| `obj[]` | get |
| `obj[]=smth`| set |
| `\|\|` | or |
| `!` | not |
| `&` | band |
@ -37,11 +39,11 @@ A data structures library based on iterators, inspired by libstdc++
| `obj++` | `X` |
| `obj--` | `X` |
| `->` | `X` |
| `+=` | `X` |
| `-=` | `X` |
| `*=` | `X` |
| `/=` | `X` |
| `%=` | `X` |
| `+` | `X` |
| `-` | `X` |
| `*` | `X` |
| `/` | `X` |
| `%` | `X` |
| `&=` | `X` |
| `\|=` | `X` |
| `^=` | `X` |