The opposite of referentially transparent is referentially
opaque. A referentially opaque function is a function that may
mean different things and return different results each time, even if
all arguments are the same.
Group items matching
in title, tags, annotations or urlThe Theory of Concatenative Combinators - 1 views
Understanding Haskell Monads - 0 views
-
-
a function that just prints a fixed text to the screen and always returns 0, is referentially opaque, because you cannot replace the function call with 0 without changing the meaning of the program.
-
n fact, a function, which doesn't take any arguments, isn't even a function in Haskell. It's simply a value. A number of simple solutions to this problem exist. One is to expect a state value as an argument and produce a new state value together with a pseudorandom number: random :: RandomState -> (Int, RandomState)
- ...12 more annotations...
1 - 4 of 4
Showing 20▼ items per page