In functional programming, there is a concept of a **pure function**, which refers to a function that always returns the same output to the same input (i.e. is deterministic), and at the same time does not suffer from any side-effects (i.e. does not affect its environment).
Example of a pure function:
// This is a pure functionfunction add(int $a, int $b): int{return $a + $b;}
This is a pure function because the output is always the same based on the input arguments.
// This is an impure functionfunction add(int $a, int $b): int{echo 'Adding...';file_put_contents('file.txt', 'value: ' . $a);return $a + $b;}
This type of function is not pure because the function changes the file system. Another type of impure function is when it interacts with the database, prints to the screen, and so on.
Jan Barášek Více o autorovi
Autor článku pracuje jako seniorní vývojář a software architekt v Praze. Navrhuje a spravuje velké webové aplikace, které znáte a používáte. Od roku 2009 nabral bohaté zkušenosti, které tímto webem předává dál.
Rád vám pomůžu:
Články píše Jan Barášek © 2009-2024 | Kontakt | Mapa webu
Status | Aktualizováno: ... | en