Tagged Questions
17
votes
4answers
1k views
Why are “pure” functions called “pure”?
A pure function is one that has no side effects -- it cannot do any kind of I/O and it cannot modify the state of anything -- and it is referentially transparent -- when called multiple times with the ...
12
votes
3answers
451 views
Purity vs Referential transparency
The terms do appear to be defined differently, but I've always thought of one implying the other; I can't think of any case when an expression is referentially transparent but nor pure, or ...
10
votes
2answers
199 views
How to represent tree with sharing in Haskell
I would like to represent a "tree" of the following shape in Haskell:
/\
/\/\
/\/\/\
/\/\/\/\
` ` ` ` `
/ and \ are the branches and ` the leaves. You can see ...
8
votes
2answers
473 views
pure/const functions in C++0x
In C++98/C++03, there are no pure/const function keywords in the language.
Has this changed in C++0x?
If so, is it possible to set such a flag even on function objects (std::function)? So I can pass ...
6
votes
6answers
287 views
What happens if you compile a program that takes no input? (Haskell IO purity issues (again))
putStrLn when called with any arguments will always return a value of type IO (). I agree that's pure, I can handle that. But is it referentially transparent? I think so, because for any given input ...
6
votes
6answers
572 views
How do I code a tree of objects in Haskell with pointers to parent and children?
I've got the following problem: I have a tree of objects of different classes where an action in the child class invalidates the parent. In imperative languages, it is trivial to do. For example, in ...
5
votes
1answer
151 views
Is it possible to write an impure template in C++?
Is it possible to write an impure template in C++? That is, a template that will sometimes give a different resulting type or int for the same template parameters. For example, is it possible to write ...
4
votes
4answers
890 views
Is this C# extension method impure and if so, bad code?
I'm learning a bit about function programming, and I'm wondering:
1) If my ForEach extension method is pure? The way I'm calling it seems violate the "don't mess with the object getting passed in", ...
2
votes
1answer
57 views
pure function of functions that returns functions in D
I'm trying to create a pure function that returns the multiplication of two other pure functions:
pure Func multiplyFunctions(Func,Real)(scope const Func f1, scope const Func f2)
{
return (Real ...
1
vote
0answers
54 views
type of a function in D
I'm interested in creating a function Derivative that returns a function that is the derivative of some function that is passed to it, at some point. However, I want to be able to specialize this so ...
0
votes
0answers
46 views
A Functional-Imperative Hybrid [closed]
Pure functional programming languages do not allow mutable data, but some computations are more naturally/intuitively expressed in an imperative way -- or an imperative version of an algorithm may be ...