lib: fix some nitunit tests, thanks to the new features of the tool
[nit.git] / lib / standard / collection / abstract_collection.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2004-2008 Jean Privat <jean@pryen.org>
4 #
5 # This file is free software, which comes along with NIT. This software is
6 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
8 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
9 # is kept unaltered, and a notification of the changes is added.
10 # You are allowed to redistribute it and sell it, alone or is a part of
11 # another product.
12
13 # Abstract collection classes and services.
14 #
15 # TODO specify the behavior on iterators when collections are modified.
16 module abstract_collection
17
18 import kernel
19
20 # The root of the collection hierarchy.
21 #
22 # Collections modelize finite groups of objects, called elements.
23 #
24 # The specific behavior and representation of collections is determined
25 # by the subclasses of the hierarchy.
26 #
27 # The main service of Collection is to provide a stable `iterator`
28 # method usable to retrieve all the elements of the collection.
29 #
30 # Additional services are provided.
31 # For an implementation point of view, Collection provide a basic
32 # implementation of these services using the `iterator` method.
33 # Subclasses often provide a more efficient implementation.
34 #
35 # Because of the `iterator` method, Collections instances can use
36 # the `for` control structure:
37 #
38 # var x: Collection[U]
39 # # ...
40 # for u in x do
41 # # u is a U
42 # # ...
43 # end
44 #
45 # that is equivalent with
46 #
47 # var x: Collection[U]
48 # # ...
49 # var i = x.iterator
50 # while i.is_ok do
51 # var u = i.item # u is a U
52 # # ...
53 # i.next
54 # end
55 interface Collection[E]
56 # Get a new iterator on the collection.
57 fun iterator: Iterator[E] is abstract
58
59 # Is there no item in the collection?
60 #
61 # assert [1,2,3].is_empty == false
62 # assert [1..1[.is_empty == true
63 fun is_empty: Bool do return length == 0
64
65 # Number of items in the collection.
66 #
67 # assert [10,20,30].length == 3
68 # assert [20..30[.length == 10
69 fun length: Int
70 do
71 var nb = 0
72 for i in self do nb += 1
73 return nb
74 end
75
76 # Is `item` in the collection ?
77 # Comparisons are done with ==
78 #
79 # assert [1,2,3].has(2) == true
80 # assert [1,2,3].has(9) == false
81 # assert [1..5[.has(2) == true
82 # assert [1..5[.has(9) == false
83 fun has(item: E): Bool
84 do
85 for i in self do if i == item then return true
86 return false
87 end
88
89 # Is the collection contain only `item`?
90 # Comparisons are done with ==
91 # Return true if the collection is empty.
92 #
93 # assert [1,1,1].has_only(1) == true
94 # assert [1,2,3].has_only(1) == false
95 # assert [1..1].has_only(1) == true
96 # assert [1..3].has_only(1) == false
97 # assert [3..3[.has_only(1) == true # empty collection
98 #
99 # ENSURE `is_empty implies result == true`
100 fun has_only(item: E): Bool
101 do
102 for i in self do if i != item then return false
103 return true
104 end
105
106 # How many occurrences of `item` are in the collection?
107 # Comparisons are done with ==
108 #
109 # assert [10,20,10].count(10) == 2
110 fun count(item: E): Int
111 do
112 var nb = 0
113 for i in self do if i == item then nb += 1
114 return nb
115 end
116
117 # Return the first item of the collection
118 #
119 # assert [1,2,3].first == 1
120 fun first: E
121 do
122 assert length > 0
123 return iterator.item
124 end
125
126 # Is the collection contains all the elements of `other`?
127 #
128 # assert [1,1,1].has_all([1]) == true
129 # assert [1,1,1].has_all([1,2]) == false
130 # assert [1,3,4,2].has_all([1..2]) == true
131 # assert [1,3,4,2].has_all([1..5]) == false
132 fun has_all(other: Collection[E]): Bool
133 do
134 for x in other do if not has(x) then return false
135 return true
136 end
137 end
138
139 # Instances of the Iterator class generates a series of elements, one at a time.
140 # They are mainly used with collections.
141 interface Iterator[E]
142 # The current item.
143 # Require `is_ok`.
144 fun item: E is abstract
145
146 # Jump to the next item.
147 # Require `is_ok`.
148 fun next is abstract
149
150 # Is there a current item ?
151 fun is_ok: Bool is abstract
152
153 # Iterate over `self`
154 fun iterator: Iterator[E] do return self
155 end
156
157 # A collection that contains only one item.
158 #
159 # Used to pass arguments by reference.
160 #
161 # Also used when one want to give asingle element when a full
162 # collection is expected
163 class Container[E]
164 super Collection[E]
165
166 redef fun first do return item
167
168 redef fun is_empty do return false
169
170 redef fun length do return 1
171
172 redef fun has(an_item) do return item == an_item
173
174 redef fun has_only(an_item) do return item == an_item
175
176 redef fun count(an_item)
177 do
178 if item == an_item then
179 return 1
180 else
181 return 0
182 end
183 end
184
185 redef fun iterator do return new ContainerIterator[E](self)
186
187 # Create a new instance with a given initial value.
188 init(e: E) do item = e
189
190 # The stored item
191 var item: E writable
192 end
193
194 # This iterator is quite stupid since it is used for only one item.
195 private class ContainerIterator[E]
196 super Iterator[E]
197 redef fun item do return _container.item
198
199 redef fun next do is_ok = false
200
201 init(c: Container[E]) do _container = c
202
203 redef var is_ok: Bool = true
204
205 var _container: Container[E]
206 end
207
208 # Items can be removed from this collection
209 interface RemovableCollection[E]
210 super Collection[E]
211
212 # Remove all items
213 #
214 # var a = [1,2,3]
215 # a.clear
216 # assert a.length == 0
217 #
218 # ENSURE `is_empty`
219 fun clear is abstract
220
221 # Remove an occucence of `item`
222 #
223 # var a = [1,2,3,1,2,3]
224 # a.remove 2
225 # assert a == [1,3,1,2,3]
226 fun remove(item: E) is abstract
227
228 # Remove all occurences of `item`
229 #
230 # var a = [1,2,3,1,2,3]
231 # a.remove_all 2
232 # assert a == [1,3,1,3]
233 fun remove_all(item: E) do while has(item) do remove(item)
234 end
235
236 # Items can be added to these collections.
237 interface SimpleCollection[E]
238 super RemovableCollection[E]
239
240 # Add an item in a collection.
241 #
242 # var a = [1,2]
243 # a.add 3
244 # assert a.has(3) == true
245 # assert a.has(10) == false
246 #
247 # Ensure col.has(item)
248 fun add(item: E) is abstract
249
250 # Add each item of `coll`.
251 # var a = [1,2]
252 # a.add_all([3..5])
253 # assert a.has(4) == true
254 # assert a.has(10) == false
255 fun add_all(coll: Collection[E]) do for i in coll do add(i)
256 end
257
258 # Abstract sets.
259 #
260 # Set is a collection without duplicates (according to `==`)
261 #
262 # var s: Set[String] = new ArraySet[String]
263 # var a = "Hello"
264 # var b = "Hel" + "lo"
265 # # ...
266 # s.add(a)
267 # assert s.has(b) == true
268 interface Set[E: Object]
269 super SimpleCollection[E]
270
271 redef fun has_only(item)
272 do
273 var l = length
274 if l == 1 then
275 return has(item)
276 else if l == 0 then
277 return true
278 else
279 return false
280 end
281 end
282
283 # Only 0 or 1
284 redef fun count(item)
285 do
286 if has(item) then
287 return 1
288 else
289 return 0
290 end
291 end
292
293 # Synonym of remove since there is only one item
294 redef fun remove_all(item) do remove(item)
295
296 # Equality is defined on set and means that each set contains the same elements
297 redef fun ==(other)
298 do
299 if not other isa Set[Object] then return false
300 if other.length != length then return false
301 return has_all(other)
302 end
303
304 # Because of the law between `==` and `hash`, `hash` is redefined to be the sum of the hash of the elements
305 redef fun hash
306 do
307 var res = 0
308 for e in self do res += res.hash
309 return res
310 end
311
312 # Returns the union of this set with the `other` set
313 fun union(other: Set[E]): Set[E]
314 do
315 var nhs = new_set
316 nhs.add_all self
317 nhs.add_all other
318 return nhs
319 end
320
321 # Returns the intersection of this set with the `other` set
322 fun intersection(other: Set[E]): Set[E]
323 do
324 var nhs = new_set
325 for v in self do if other.has(v) then nhs.add(v)
326 return nhs
327 end
328
329 protected fun new_set: Set[E] is abstract
330 end
331
332 # MapRead are abstract associative collections: `key` -> `item`.
333 interface MapRead[K: Object, E]
334 # Get the item at `key`
335 #
336 # var x = new HashMap[String, Int]
337 # x["four"] = 4
338 # assert x["four"] == 4
339 # # assert x["five"] #=> abort
340 #
341 # If the key is not in the map, `provide_default_value` is called (that aborts by default)
342 # See `get_or_null` and `get_or_default` for safe variations.
343 fun [](key: K): E is abstract
344
345 # Get the item at `key` or null if `key` is not in the map.
346 #
347 # var x = new HashMap[String, Int]
348 # x["four"] = 4
349 # assert x.get_or_null("four") == 4
350 # assert x.get_or_null("five") == null
351 #
352 # Note: use `has_key` and `[]` if you need the distinction bewteen a key associated with null, and no key.
353 fun get_or_null(key: K): nullable E
354 do
355 if has_key(key) then return self[key]
356 return null
357 end
358
359 # Get the item at `key` or return `default` if not in map
360 #
361 # var x = new HashMap[String, Int]
362 # x["four"] = 4
363 # assert x.get_or_default("four", 40) == 4
364 # assert x.get_or_default("five", 50) == 50
365 #
366 fun get_or_default(key: K, default: E): E
367 do
368 if has_key(key) then return self[key]
369 return default
370 end
371
372 # Depreciated alias for `keys.has`
373 fun has_key(key: K): Bool do return self.keys.has(key)
374
375 # Get a new iterator on the map.
376 fun iterator: MapIterator[K, E] is abstract
377
378 # Return the point of view of self on the values only.
379 # Note that `self` and `values` are views on the same data;
380 # therefore any modification of one is visible on the other.
381 #
382 # var x = new HashMap[String, Int]
383 # x["four"] = 4
384 # assert x.values.has(4) == true
385 # assert x.values.has(5) == false
386 fun values: Collection[E] is abstract
387
388 # Return the point of view of self on the keys only.
389 # Note that `self` and `keys` are views on the same data;
390 # therefore any modification of one is visible on the other.
391 #
392 # var x = new HashMap[String, Int]
393 # x["four"] = 4
394 # assert x.keys.has("four") == true
395 # assert x.keys.has("five") == false
396 fun keys: Collection[K] is abstract
397
398 # Is there no item in the collection?
399 #
400 # var x = new HashMap[String, Int]
401 # assert x.is_empty == true
402 # x["four"] = 4
403 # assert x.is_empty == false
404 fun is_empty: Bool is abstract
405
406 # Number of items in the collection.
407 #
408 # var x = new HashMap[String, Int]
409 # assert x.length == 0
410 # x["four"] = 4
411 # assert x.length == 1
412 # x["five"] = 5
413 # assert x.length == 2
414 fun length: Int is abstract
415
416 # Called by the underling implementation of `[]` to provide a default value when a `key` has no value
417 # By default the behavior is to abort.
418 #
419 # Note: the value is returned *as is*, implementations may want to store the value in the map before returning it
420 # @toimplement
421 protected fun provide_default_value(key: K): E do abort
422 end
423
424 # Maps are associative collections: `key` -> `item`.
425 #
426 # The main operator over maps is [].
427 #
428 # var map: Map[String, Int] = new ArrayMap[String, Int]
429 # # ...
430 # map["one"] = 1 # Associate 'one' to '1'
431 # map["two"] = 2 # Associate 'two' to '2'
432 # assert map["one"] == 1
433 # assert map["two"] == 2
434 #
435 # Instances of maps can be used with the for structure
436 #
437 # for key, value in map do
438 # assert (key == "one" and value == 1) or (key == "two" and value == 2)
439 # end
440 #
441 # The keys and values in the map can also be manipulated directly with the `keys` and `values` methods.
442 #
443 # assert map.keys.has("one") == true
444 # assert map.keys.has("tree") == false
445 # assert map.values.has(1) == true
446 # assert map.values.has(3) == false
447 #
448 interface Map[K: Object, E]
449 super MapRead[K, E]
450
451 # Set the `value` at `key`.
452 #
453 # Values can then get retrieved with `[]`.
454 #
455 # var x = new HashMap[String, Int]
456 # x["four"] = 4
457 # assert x["four"] == 4
458 #
459 # If the key was associated with a value, this old value is discarted
460 # and replaced with the new one.
461 #
462 # x["four"] = 40
463 # assert x["four"] == 40
464 # assert x.values.has(4) == false
465 #
466 fun []=(key: K, value: E) is abstract
467
468 # Add each (key,value) of `map` into `self`.
469 # If a same key exists in `map` and `self`, then the value in self is discarded.
470 #
471 # It is the analogous of `SimpleCollection::add_all`
472 #
473 # var x = new HashMap[String, Int]
474 # x["four"] = 4
475 # x["five"] = 5
476 # var y = new HashMap[String, Int]
477 # y["four"] = 40
478 # y["nine"] = 90
479 # x.recover_with y
480 # assert x["four"] == 40
481 # assert x["five"] == 5
482 # assert x["nine"] == 90
483 fun recover_with(map: Map[K, E])
484 do
485 var i = map.iterator
486 while i.is_ok do
487 self[i.key] = i.item
488 i.next
489 end
490 end
491
492 # Remove all items
493 #
494 # var x = new HashMap[String, Int]
495 # x["four"] = 4
496 # x.clear
497 # assert x.keys.has("four") == false
498 #
499 # ENSURE `is_empty`
500 fun clear is abstract
501
502 redef fun values: RemovableCollection[E] is abstract
503
504 redef fun keys: RemovableCollection[K] is abstract
505 end
506
507 # Iterators for Map.
508 interface MapIterator[K: Object, E]
509 # The current item.
510 # Require `is_ok`.
511 fun item: E is abstract
512
513 # The key of the current item.
514 # Require `is_ok`.
515 fun key: K is abstract
516
517 # Jump to the next item.
518 # Require `is_ok`.
519 fun next is abstract
520
521 # Is there a current item ?
522 fun is_ok: Bool is abstract
523
524 # Set a new `item` at `key`.
525 #fun item=(item: E) is abstract
526 end
527
528 # Iterator on a 'keys' point of view of a map
529 class MapKeysIterator[K: Object, V]
530 super Iterator[K]
531 # The original iterator
532 var original_iterator: MapIterator[K, V]
533
534 redef fun is_ok do return self.original_iterator.is_ok
535 redef fun next do self.original_iterator.next
536 redef fun item do return self.original_iterator.key
537 end
538
539 # Iterator on a 'values' point of view of a map
540 class MapValuesIterator[K: Object, V]
541 super Iterator[V]
542 # The original iterator
543 var original_iterator: MapIterator[K, V]
544
545 redef fun is_ok do return self.original_iterator.is_ok
546 redef fun next do self.original_iterator.next
547 redef fun item do return self.original_iterator.item
548 end
549
550 # Sequences are indexed collections.
551 # The first item is 0. The last is `length-1`.
552 #
553 # The order is the main caracteristic of sequence
554 # and all concrete implementation of sequences are basically interchangeable.
555 interface SequenceRead[E]
556 super Collection[E]
557
558 # Get the first item.
559 # Is equivalent with `self[0]`.
560 #
561 # var a = [1,2,3]
562 # assert a.first == 1
563 #
564 # REQUIRE `not is_empty`
565 redef fun first
566 do
567 assert not_empty: not is_empty
568 return self[0]
569 end
570
571 # Return the index-th element of the sequence.
572 # The first element is 0 and the last is `length-1`
573 # If index is invalid, the program aborts
574 #
575 # var a = [10,20,30]
576 # assert a[0] == 10
577 # assert a[1] == 20
578 # assert a[2] == 30
579 #
580 # REQUIRE `index >= 0 and index < length`
581 fun [](index: Int): E is abstract
582
583 # Get the last item.
584 # Is equivalent with `self[length-1]`.
585 #
586 # var a = [1,2,3]
587 # assert a.last == 3
588 #
589 # REQUIRE `not is_empty`
590 fun last: E
591 do
592 assert not_empty: not is_empty
593 return self[length-1]
594 end
595
596 # The index of the first occurrence of `item`.
597 # Return -1 if `item` is not found.
598 # Comparison is done with `==`.
599 #
600 # var a = [10,20,30,10,20,30]
601 # assert a.index_of(20) == 1
602 # assert a.index_of(40) == -1
603 fun index_of(item: E): Int do return index_of_from(item, 0)
604
605 # The index of the last occurrence of `item`.
606 # Return -1 if `item` is not found.
607 # Comparison is done with `==`.
608 #
609 # var a = [10,20,30,10,20,30]
610 # assert a.last_index_of(20) == 4
611 # assert a.last_index_of(40) == -1
612 fun last_index_of(item: E): Int do return last_index_of_from(item, length-1)
613
614 # The index of the first occurrence of `item`, starting from pos.
615 # Return -1 if `item` is not found.
616 # Comparison is done with `==`.
617 #
618 # var a = [10,20,30,10,20,30]
619 # assert a.index_of_from(20, 3) == 4
620 # assert a.index_of_from(20, 4) == 4
621 # assert a.index_of_from(20, 5) == -1
622 fun index_of_from(item: E, pos: Int): Int
623 do
624 var p = 0
625 var i = iterator
626 while i.is_ok do
627 if p>pos and i.item == item then return i.index
628 i.next
629 p += 1
630 end
631 return -1
632 end
633
634 # The index of the last occurrence of `item` starting from `pos` and decrementing.
635 # Return -1 if `item` is not found.
636 # Comparison is done with `==`.
637 #
638 # var a = [10,20,30,10,20,30]
639 # assert a.last_index_of_from(20, 2) == 1
640 # assert a.last_index_of_from(20, 1) == 1
641 # assert a.last_index_of_from(20, 0) == -1
642 fun last_index_of_from(item: E, pos: Int): Int
643 do
644 var res = -1
645 var p = 0
646 var i = iterator
647 while i.is_ok do
648 if p>pos then break
649 if i.item == item then res = p
650 i.next
651 p += 1
652 end
653 return res
654 end
655
656 # Two sequences are equals if they have the same items in the same order.
657 #
658 # var a = new List[Int]
659 # a.add(1)
660 # a.add(2)
661 # a.add(3)
662 # assert a == [1,2,3]
663 # assert a != [1,3,2]
664 redef fun ==(o)
665 do
666 if not o isa SequenceRead[nullable Object] then return false
667 var l = length
668 if o.length != l then return false
669 var i = 0
670 while i < l do
671 if self[i] != o[i] then return false
672 i += 1
673 end
674 return true
675 end
676
677 # Because of the law between `==` and `hash`, `hash` is redefined to be the sum of the hash of the elements
678 redef fun hash
679 do
680 var res = 0
681 for e in self do res += res.hash
682 return res
683 end
684
685 redef fun iterator: IndexedIterator[E] is abstract
686
687 # Gets a new Iterator starting at position `pos`
688 #
689 # var iter = [10,20,30,40,50].iterator_from(2)
690 # assert iter.to_a == [30, 40, 50]
691 fun iterator_from(pos: Int): IndexedIterator[E]
692 do
693 var res = iterator
694 while pos > 0 and res.is_ok do
695 res.next
696 pos -= 1
697 end
698 return res
699 end
700
701 # Gets an iterator starting at the end and going backwards
702 #
703 # var reviter = [1,2,3].reverse_iterator
704 # assert reviter.to_a == [3,2,1]
705 fun reverse_iterator: IndexedIterator[E] is abstract
706
707 # Gets an iterator on the chars of self starting from `pos`
708 #
709 # var reviter = [10,20,30,40,50].reverse_iterator_from(2)
710 # assert reviter.to_a == [30,20,10]
711 fun reverse_iterator_from(pos: Int): IndexedIterator[E]
712 do
713 var res = reverse_iterator
714 while pos > 0 and res.is_ok do
715 res.next
716 pos -= 1
717 end
718 return res
719 end
720 end
721
722 # Sequence are indexed collection.
723 # The first item is 0. The last is `length-1`.
724 interface Sequence[E]
725 super SequenceRead[E]
726 super SimpleCollection[E]
727
728 # Set the first item.
729 # Is equivalent with `self[0] = item`.
730 #
731 # var a = [1,2,3]
732 # a.first = 10
733 # assert a == [10,2,3]
734 fun first=(item: E)
735 do self[0] = item end
736
737 # Set the last item.
738 # Is equivalent with `self[length-1] = item`.
739 #
740 # var a = [1,2,3]
741 # a.last = 10
742 # assert a == [1,2,10]
743 #
744 # If the sequence is empty, `last=` is equivalent with `self[0]=` (thus with `first=`)
745 #
746 # var b = new Array[Int]
747 # b.last = 10
748 # assert b == [10]
749 fun last=(item: E)
750 do
751 var l = length
752 if l > 0 then
753 self[l-1] = item
754 else
755 self[0] = item
756 end
757 end
758
759 # A synonym of `push`
760 redef fun add(e) do push(e)
761
762 # Add an item after the last one.
763 #
764 # var a = [1,2,3]
765 # a.push(10)
766 # a.push(20)
767 # assert a == [1,2,3,10,20]
768 fun push(e: E) is abstract
769
770 # Add each item of `coll` after the last.
771 #
772 # var a = [1,2,3]
773 # a.append([7..9])
774 # assert a == [1,2,3,7,8,9]
775 fun append(coll: Collection[E]) do for i in coll do push(i)
776
777 # Remove the last item.
778 #
779 # var a = [1,2,3]
780 # assert a.pop == 3
781 # assert a.pop == 2
782 # assert a == [1]
783 #
784 # REQUIRE `not is_empty`
785 fun pop: E is abstract
786
787 # Add an item before the first one.
788 #
789 # var a = [1,2,3]
790 # a.unshift(10)
791 # a.unshift(20)
792 # assert a == [20,10,1,2,3]
793 fun unshift(e: E) is abstract
794
795 # Remove the first item.
796 # The second item thus become the first.
797 #
798 # var a = [1,2,3]
799 # assert a.shift == 1
800 # assert a.shift == 2
801 # assert a == [3]
802 #
803 # REQUIRE `not is_empty`
804 fun shift: E is abstract
805
806 # Set the `item` at `index`.
807 #
808 # var a = [10,20,30]
809 # a[1] = 200
810 # assert a == [10,200,30]
811 #
812 # like with `[]`, index should be between `0` and `length-1`
813 # However, if `index==length`, `[]=` works like `push`.
814 #
815 # a[3] = 400
816 # assert a == [10,200,30,400]
817 #
818 # REQUIRE `index >= 0 and index <= length`
819 fun []=(index: Int, item: E) is abstract
820
821 # Insert an element at a given position, following elements are shifted.
822 #
823 # var a = [10, 20, 30, 40]
824 # a.insert(100, 2)
825 # assert a == [10, 20, 100, 30, 40]
826 #
827 # REQUIRE `index >= 0 and index < length`
828 # ENSURE `self[index] == item`
829 fun insert(item: E, index: Int) is abstract
830
831 # Remove the item at `index` and shift all following elements
832 #
833 # var a = [10,20,30]
834 # a.remove_at(1)
835 # assert a == [10,30]
836 #
837 # REQUIRE `index >= 0 and index < length`
838 fun remove_at(index: Int) is abstract
839 end
840
841 # Iterators on indexed collections.
842 interface IndexedIterator[E]
843 super Iterator[E]
844 # The index of the current item.
845 fun index: Int is abstract
846 end
847
848 # Associative arrays that internally uses couples to represent each (key, value) pairs.
849 # This is an helper class that some specific implementation of Map may implements.
850 interface CoupleMap[K: Object, E]
851 super Map[K, E]
852
853 # Return the couple of the corresponding key
854 # Return null if the key is no associated element
855 protected fun couple_at(key: K): nullable Couple[K, E] is abstract
856
857 # Return a new iteralot on all couples
858 # Used to provide `iterator` and others
859 protected fun couple_iterator: Iterator[Couple[K,E]] is abstract
860
861 redef fun iterator do return new CoupleMapIterator[K,E](couple_iterator)
862
863 redef fun [](key)
864 do
865 var c = couple_at(key)
866 if c == null then
867 return provide_default_value(key)
868 else
869 return c.second
870 end
871 end
872 end
873
874 # Iterator on CoupleMap
875 #
876 # Actually it is a wrapper around an iterator of the internal array of the map.
877 private class CoupleMapIterator[K: Object, E]
878 super MapIterator[K, E]
879 redef fun item do return _iter.item.second
880
881 #redef fun item=(e) do _iter.item.second = e
882
883 redef fun key do return _iter.item.first
884
885 redef fun is_ok do return _iter.is_ok
886
887 redef fun next
888 do
889 _iter.next
890 end
891
892 var _iter: Iterator[Couple[K,E]]
893
894 init(i: Iterator[Couple[K,E]]) do _iter = i
895 end
896
897 # Some tools ###################################################################
898
899 # Two objects in a simple structure.
900 class Couple[F, S]
901
902 # The first element of the couple.
903 var first: F writable
904
905 # The second element of the couple.
906 var second: S writable
907
908 # Create a new instance with a first and a second object.
909 init(f: F, s: S)
910 do
911 first = f
912 second = s
913 end
914 end