All files ReverseIterator.ts

18.18% Statements 2/11
0% Branches 0/4
0% Functions 0/7
18.18% Lines 2/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36  1x   1x                                                                
 
import {Iterator} from './Iterator';
 
export class ReverseIterator<T> extends Iterator<T> {
    public constructor(collection: Array<T>, index?: number) {
        super(collection, index);
        if (index === null || index === undefined) {
            super.bringToEnd();
        }
    }
    
    public incrementIndex(): number {
        return super.decrementIndex();
    }
 
    public decrementIndex(): number {
        return super.incrementIndex();
    }
 
    public peekNextIndex(): number {
        return super.peekPreviousIndex();
    }
 
    public peekPreviousIndex(): number {
        return super.peekNextIndex();
    }
 
    public bringToStart(): void {
        super.bringToEnd();
    }
 
    public bringToEnd(): void {
        super.bringToStart();
    }
}