So, why exactly is LINQ not considered purely functional?
Is it because side effects can occur? Or is it maybe because it exists in an imperative environment?
|
So, why exactly is LINQ not considered purely functional? Is it because side effects can occur? Or is it maybe because it exists in an imperative environment? |
|||
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
LINQ is not a purely functional programming model as it permits side effects, is thus not referentially-transparent, which is a common definition of "purely functional". |
|||
|
|
Is it because side effects can occur?. Yes. – Oded♦ Nov 15 '12 at 11:47