// prints stats about number of steps & time taken, returns computation result
static A vStackComputeWithStats(VStack.Computable computation) {
if (computation == null) null;
VStack stack = new(computation);
stepAllWithStats(stack);
ret (A) stack.result();
}