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... | |
![]() | |
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 | |
![]() | |
ArrayList< Integer > | numbers |
handle to range More... | |
Class to create shuffled ranges of numbers.
Definition at line 209 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 215 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 227 of file Common.java.