|
Labyrinth
A labyrinth game assignment
|
Class to create shuffled ranges of numbers. More...
Package Functions | |
| ShuffledRange (int begin, int end) | |
| Create a shuffled version of range [begin, end) More... | |
| ShuffledRange (int begin, int end, int step) | |
| Create a shuffled version of the range [begin, end) using step as interval between items. More... | |
Package Functions inherited from net.hoo2.auth.labyrinth.Range | |
| Range (int begin, int end) | |
| Create the range [begin, end) More... | |
| Range (int begin, int end, int step) | |
| Create the range [begin, end) using step as interval between items. More... | |
| int | get () |
| Extract and return the first item from the range. More... | |
Additional Inherited Members | |
Protected Attributes inherited from net.hoo2.auth.labyrinth.Range | |
| ArrayList< Integer > | numbers |
| handle to range More... | |
Class to create shuffled ranges of numbers.
Definition at line 208 of file Common.java.
|
package |
Create a shuffled version of range [begin, end)
| begin | The first item on the range |
| end | The item after the last on the range |
Definition at line 214 of file Common.java.
|
package |
Create a shuffled version of the range [begin, end) using step as interval between items.
| begin | The first item on the range |
| end | The item after the last on the range |
| step | The interval between items |
Definition at line 226 of file Common.java.