go abstract method
- int count
Moves forwards or backwards through the history stack.
A negative count
value causes a backward move in the history stack. And
a positive count
value causs a forward move.
Examples:
go(-2)
moves back 2 steps in history.go(3)
moves forward 3 steps in hisotry.
Implementation
void go(int count);