From 42f7d379a430aaf2fad169f0170de04072b08b10 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Fri, 22 Apr 2016 14:48:04 -0400 Subject: Formatting changes --- .../java/bjc/utils/funcdata/IFunctionalList.java | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcdata/IFunctionalList.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcdata/IFunctionalList.java b/BJC-Utils2/src/main/java/bjc/utils/funcdata/IFunctionalList.java index 3358da0..91b2ba3 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/funcdata/IFunctionalList.java +++ b/BJC-Utils2/src/main/java/bjc/utils/funcdata/IFunctionalList.java @@ -285,6 +285,11 @@ public interface IFunctionalList { */ void removeMatching(ContainedType desiredElement); + /** + * Reverse the contents of this list in place + */ + void reverse(); + /** * Perform a binary search for the specified key using the provided * means of comparing elements. Since this IS a binary search, the list @@ -310,6 +315,13 @@ public interface IFunctionalList { */ void sort(Comparator comparator); + /** + * Get the tail of this list (the list without the first element + * + * @return The list without the first element + */ + public IFunctionalList tail(); + /** * Convert this list into an array * @@ -325,16 +337,4 @@ public interface IFunctionalList { * @return An iterable view onto the list */ Iterable toIterable(); - - /** - * Get the tail of this list (the list without the first element - * - * @return The list without the first element - */ - public IFunctionalList tail(); - - /** - * Reverse the contents of this list in place - */ - void reverse(); } \ No newline at end of file -- cgit v1.2.3