Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
WhosyVox authored Apr 22, 2024
1 parent daf73d3 commit 7193b8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ Every random number function is in the form [x,y) to be fully consistent.
|Function | Description|
|-------------------|------------|
Random.random() | returns a random decimal value in the range [0,1) |
Random.numberBetween(x,y) | returns a random value in the range [x,y) |
Random.integerBetween(x,y) | returns a random integer in the range [x,y) |
Random.numberBetween( x, y ) | returns a random value in the range [x,y) |
Random.integerBetween( x, y ) | returns a random integer in the range [x,y) |
Random.boolean() | randomly returns either true or false |

### Lists of randoms
|Function | Description|
|----------------------------|------------|
Random.randomList( size ) | returns a `size` sized list of decimal values in the range [0,1) |
Random.numberBetweenList( size, x, y ) | returns a `size` sized list of random values in the range [x,y) |
Random.integerBetweenList( size, x ,y ) | returns a `size` sized list of random integers in the range [x,y) |
Random.integerBetweenList( size, x, y ) | returns a `size` sized list of random integers in the range [x,y) |
Random.booleanList( size ) | returns a `size` sized list of random boolean values |

### array methods
Expand Down

0 comments on commit 7193b8c

Please sign in to comment.