/src/lib/iterator/map_aggregator.e

http://github.com/tybor/Liberty · Specman e · 57 lines · 31 code · 3 blank · 23 comment · 0 complexity · b7b037f93ee95112f2e1a886bbf4ba04 MD5 · raw file

  1. -- This file is part of a Liberty Eiffel library.
  2. -- See the full copyright at the end.
  3. --
  4. expanded class MAP_AGGREGATOR[V_, K_, R_]
  5. feature {ANY}
  6. map, map_iter (items: MAP[V_, K_]; action: FUNCTION[TUPLE[V_, K_, R_], R_]; initial: R_): R_
  7. local
  8. i: ITERATOR[K_]
  9. do
  10. Result := initial
  11. from
  12. i := items.new_iterator_on_keys
  13. until
  14. i.is_off
  15. loop
  16. Result := action.item([items.at(i.item), i.item, Result])
  17. i.next
  18. end
  19. end
  20. map_index (items: MAP[V_, K_]; action: FUNCTION[TUPLE[V_, K_, R_], R_]; initial: R_): R_
  21. local
  22. i: INTEGER
  23. do
  24. Result := initial
  25. from
  26. i := items.lower
  27. until
  28. i > items.upper
  29. loop
  30. Result := action.item([items.item(i), items.key(i), Result])
  31. i := i + 1
  32. end
  33. end
  34. end -- class MAP_AGGREGATOR
  35. --
  36. -- Copyright (C) 2009-2017: by all the people cited in the AUTHORS file.
  37. --
  38. -- Permission is hereby granted, free of charge, to any person obtaining a copy
  39. -- of this software and associated documentation files (the "Software"), to deal
  40. -- in the Software without restriction, including without limitation the rights
  41. -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  42. -- copies of the Software, and to permit persons to whom the Software is
  43. -- furnished to do so, subject to the following conditions:
  44. --
  45. -- The above copyright notice and this permission notice shall be included in
  46. -- all copies or substantial portions of the Software.
  47. --
  48. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  49. -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  50. -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  51. -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  52. -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  53. -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  54. -- THE SOFTWARE.