aboutsummaryrefslogtreecommitdiff
path: root/project/JavaCommon/src/com/modulus/common/collections/Collections2.java
diff options
context:
space:
mode:
authorJoshua Rahm <joshua.rahm@colorado.edu>2015-01-27 18:40:32 -0700
committerJoshua Rahm <joshua.rahm@colorado.edu>2015-01-27 18:40:32 -0700
commit5f3fb9afece2125cbeba79d61a8d88460b7878d7 (patch)
treeb0e1e60bae9927a9449561bf7fe9431a54d12be9 /project/JavaCommon/src/com/modulus/common/collections/Collections2.java
downloadLegacyQBar-5f3fb9afece2125cbeba79d61a8d88460b7878d7.tar.gz
LegacyQBar-5f3fb9afece2125cbeba79d61a8d88460b7878d7.tar.bz2
LegacyQBar-5f3fb9afece2125cbeba79d61a8d88460b7878d7.zip
initial commit
Diffstat (limited to 'project/JavaCommon/src/com/modulus/common/collections/Collections2.java')
-rw-r--r--project/JavaCommon/src/com/modulus/common/collections/Collections2.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/project/JavaCommon/src/com/modulus/common/collections/Collections2.java b/project/JavaCommon/src/com/modulus/common/collections/Collections2.java
new file mode 100644
index 0000000..65bcc60
--- /dev/null
+++ b/project/JavaCommon/src/com/modulus/common/collections/Collections2.java
@@ -0,0 +1,28 @@
+package com.modulus.common.collections;
+
+public class Collections2 {
+
+ static public Integer[] rangeAsObjects(int start, int stop)
+ {
+ Integer[] result = new Integer[stop-start];
+
+ for(int i=0;i<stop-start;i++)
+ result[i] = start+i;
+
+ return result;
+ }
+
+ static public int[] range(int start, int stop)
+ {
+ int[] result = new int[stop-start];
+
+ for(int i=0;i<stop-start;i++)
+ result[i] = start+i;
+
+ return result;
+ }
+
+ static public int[] range(int stop){
+ return range(0, stop);
+ }
+}