summaryrefslogtreecommitdiff
path: root/test/files/run/iq.check
diff options
context:
space:
mode:
authorstenman <stenman@epfl.ch>2003-07-09 14:43:30 +0000
committerstenman <stenman@epfl.ch>2003-07-09 14:43:30 +0000
commit720e381fd86214e972f47d2c608e8bba0691b9e3 (patch)
treec8bd75982bcf252bed6b3b2916bb6d7e4b790066 /test/files/run/iq.check
parent428dce2175302ef5fcb20599525454a64ca7613c (diff)
downloadscala-720e381fd86214e972f47d2c608e8bba0691b9e3.tar.gz
scala-720e381fd86214e972f47d2c608e8bba0691b9e3.tar.bz2
scala-720e381fd86214e972f47d2c608e8bba0691b9e3.zip
Functional Queues, take 3
Diffstat (limited to 'test/files/run/iq.check')
-rw-r--r--test/files/run/iq.check11
1 files changed, 10 insertions, 1 deletions
diff --git a/test/files/run/iq.check b/test/files/run/iq.check
index a2b2750392..8e794a8629 100644
--- a/test/files/run/iq.check
+++ b/test/files/run/iq.check
@@ -1,3 +1,12 @@
Empty
Head: 42
-q5: List(0,1,2,3,4,5,6,7,8,9)
+q5: Queue(0,1,2,3,4,5,6,7,8,9)
+q5[5]: 5
+q5 == q5c: true
+q5c == q5: true
+q8: Queue(2,3,4,5,6,7,8,9,10,11)
+q8 == q9: true
+Elements: 1 2 3 4 5 6 7 8 9
+String: <1-2-3-4-5-6-7-8-9>
+Length: 9
+Front: 1