Hi,

Is that common to use succ() and pred() functions when doing simple math (adding and subtracting values)?

For example for setting size of dynamic variable.

Code:
  SetLength(V, Succ(Length(V)));
Versus this...

Code:
  SetLength(V, Length(V) + 1);
Which one is faster?