Skip to content

Commit bead9f4

Browse files
committed
Added to readme
1 parent 19cc5c7 commit bead9f4

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
# JavaLibraries
2-
Useful methods that could be implemented into a wide variety of Java Projects.
2+
Useful methods that could be implemented into a wide variety of Java Projects.
3+
## util
4+
### cycle
5+
CyclicList - A variation on LinkedLists where going out of bounds through
6+
the top or bottom will pop you out on the other side
7+
CyclicIntList - A CyclicList\<Integer\> which uses a more efficient
8+
implementation of the CyclicList for use on numbers rather than objects
9+
### math
10+
Random - Provides easy to use methods to generate ints/doubles in a customizable range
11+
Round - Provides easy to use methods for rounding doubles with different specifications
12+
### strings
13+
StringFormatter - Allows for converting a String to a String of a different length by either
14+
cutting the ends off or adding white-space of the specified character

0 commit comments

Comments
 (0)