Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cxmeel authored Feb 3, 2023
1 parent 43b5a16 commit 57e8dfb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Wally is a CLI package manager (much like NPM, Yarn or Cargo) for Roblox by @Upl
# wally.toml

[dependencies]
Sift = "csqrl/[email protected].3"
Sift = "csqrl/[email protected].X" # Replace with current version number
```

```shell
Expand Down Expand Up @@ -107,6 +107,8 @@ As per the recommendations in [Llama's README][freddylist/llama], the following
### Arrays (Lists)

- `at`: Get an element at a specific index (negative indices are supported).
- `difference`: Returns an array of values that are in the first array, but not in the other arrays.
- `differenceSymmetric`: Returns an array of values that are in the first array, but not in the other arrays, and vice versa.
- `freeze`: Freeze an array.
- `freezeDeep`: Freeze an array and all nested arrays.
- `is`: Check if the passed value is an array.
Expand All @@ -122,3 +124,5 @@ As per the recommendations in [Llama's README][freddylist/llama], the following
### Sets

- `count`: Get the number of elements in a set.
- `difference`: Returns a set of values that are in the first set, but not in the other sets.
- `differenceSymmetric`: Returns a set of values that are in the first set, but not in the other sets, and vice versa.

0 comments on commit 57e8dfb

Please sign in to comment.