Viewing profile — idempotent
idempotent
HN member- Joined
- Mon, Aug 20, 2018, 11:55 PM UTC
- HN karma
- 9
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About idempotent
No profile information was provided.
Recent public activity
-
comment
Comment #17805360
A function f is idempotent if: f(f(x)) = f(x) The "absolute value" function is idempotent: abs(abs(-42)) = abs(-42) The "squared" function is not: sq(sq(7)) != sq(7)