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