I read Wikipedia's explanation of idempotence. I know it means a function's output is determined by it's input. But I remember that I heard a very similar concept: pure function. I Google them but can't find their difference...
Are they equivalent?
|
I read Wikipedia's explanation of idempotence. I know it means a function's output is determined by it's input. But I remember that I heard a very similar concept: pure function. I Google them but can't find their difference... Are they equivalent? |
||||
|
|
|
An idempotent function can cause idempotent side-effects. A pure function cannot. For example, a function which sets the text of a textbox is idempotent (because multiple calls will display the same text), but not pure. |
|||||||||||||||||
|
|
A pure function is a function without side-effects where the output is solely determined by the input - that is, calling An idempotent function is one that can be applied multiple times without changing the result - that is, A function can be pure, idempotent, both, or neither. |
|||||||||||||||
|
|
Functional purity means that there are no side effects. On the other hand, idempotence means that a function is invariant with respect to multiple calls. Every pure function is side effect idempotent because pure functions never produce side effects even if they are called more then once. However, return value idempotence means that f(f(x)) = f(x) which is not effected by purity. |
|||
|
|
|
No, an idempotent function will change program/object/machine state - and will make that change only once (despite repeated calls). A pure function changes nothing, and continues to provide a (return) result each time it is called. |
|||
|
|