Skip to content

Files

Latest commit

62481a4 · Apr 3, 2023

History

History
15 lines (13 loc) · 418 Bytes

repeated-computations-in-a-loop.md

File metadata and controls

15 lines (13 loc) · 418 Bytes

Repeated Computations in a Loop

If an expression in a loop produces the same outcome in each iteration, it can be moved out of the loop. This is especially important when the variables(s) used in the expression are stored in storage.

uint a = 4;
uint b = 5;
function repeatedComputations(uint x) public returns(uint) {
  uint sum = 0;
  for(uint i = 0; i <= x; i++) {
    sum = a + b;
  }
  return sum;
}