fix(devDependencies)

This commit is contained in:
2025-05-11 23:28:18 +03:00
parent c0fdb85a36
commit 36556e1d23
3 changed files with 167 additions and 706 deletions

View File

@ -5,7 +5,7 @@ A data structures library based on iterators, inspired by libstdc++
## Operators ## Operators
| Operator | Naming | | Operator | Naming |
| ----------- | ------ | | ----------- | ------------- |
| `+` | add | | `+` | add |
| `-` | sub | | `-` | sub |
| `++obj` | inc | | `++obj` | inc |
@ -15,10 +15,10 @@ A data structures library based on iterators, inspired by libstdc++
| `%` | mod | | `%` | mod |
| `==` | eq | | `==` | eq |
| `!=` | neq | | `!=` | neq |
| `<` | lt | | `<` | a.cmp(b) < 0 |
| `>` | gt | | `>` | a.cmp(b) > 0 |
| `<=` | lte | | `<=` | a.cmp(b) <= 0 |
| `>=` | gte | | `>=` | a.cmp(b) >= 0 |
| `&&` | and | | `&&` | and |
| `=` const & | copy | | `=` const & | copy |
| `=` && | move | | `=` && | move |

785
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@
"author": "Vlad Litvinov <vlad@sek1.ro>", "author": "Vlad Litvinov <vlad@sek1.ro>",
"license": "LGPL-3.0-only", "license": "LGPL-3.0-only",
"type": "module", "type": "module",
"dependencies": { "devDependencies": {
"vitest": "^3.1.1" "vitest": "^3.1.1"
} }
} }