Example #1
0
 public Collection<LoopEx> countedLoops() {
   List<LoopEx> counted = new LinkedList<>();
   for (LoopEx loop : loops()) {
     if (loop.isCounted()) {
       counted.add(loop);
     }
   }
   return counted;
 }