Referential Transparency

2019-04-08 01:59发布

What is the meaning of the term "Non-observable" when used in context with the term "referentially transparent" in functional programming?

1条回答
可以哭但决不认输i
2楼-- · 2019-04-08 02:13

As you might know, the term "referentially transparent" means that the value of expression can depend only on the values of its parts, and not on any other facts about them.

For example, it cannot depend on the following:

  • Whether some part of expression is already evaluated or not (in a lazy language)
  • Whether two equal values are shared (are pointers to the same location in memory) or not
  • Whether a data structure is cyclic (i.e. its pointers create a cycle) or not

All those facts about the current state of the program are either true or false, but no expression can change its value depending on them. So those things are called non-observable.

This webcomic and its discussion on reddit might enlighten you as well.

查看更多
登录 后发表回答