Tagged Questions
The pure tag has no wiki summary.
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 ...
13
votes
3answers
968 views
A way to avoid a common use of unsafePerformIO
I often find this Pattern in Haskell code:
options :: MVar OptionRecord
options = unsafePerformIO $ newEmptyMVar
...
doSomething :: Foo -> Bar
doSomething = unsafePerformIO $ do
opt <- ...
12
votes
3answers
436 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
189 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 ...
10
votes
5answers
758 views
pure/const functions in C++
I'm thinking of using pure/const functions more heavily in my C++ code. (pure/const attribute in GCC)
However, I am curious how strict I should be about it and what could possibly break.
The most ...
9
votes
10answers
463 views
When should a virtual method be pure?
I have found some code that I am working with, and was wondering what the best design implementation is.
If a base class defines a method as virtual, but implements a empty body as well, thus not ...
8
votes
2answers
178 views
What are some of the most 'pure' object-oriented languages? [closed]
A recent introduction to Smalltalk has enlightened me on the application and benefits of a 'pure' object oriented style. I'd previously seen the benefits of this in Ruby, though the presence of non ...
8
votes
2answers
459 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 ...
8
votes
5answers
488 views
How to use pure in D 2.0
While playing around with D 2.0 I found the following problem:
Example 1:
pure string[] run1()
{
string[] msg;
msg ~= "Test";
msg ~= "this.";
return msg;
}
This compiles and works as ...
6
votes
6answers
274 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
566 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 ...
6
votes
1answer
698 views
Question about [Pure] methods
Is the following method Pure? I'd say so, as it doesn't change in anyway the current class, thus, everything we can now currenly "see" in the class, before running this method will still be exactly ...
5
votes
4answers
1k views
Implement a pure virtual method in Objective-C
I want to go there. Seriously though, how does one implement a pure virtual method in an "Apple" way? Do you use a Protocol with your base class and throw exceptions on those methods?
5
votes
1answer
812 views
pure/const function attributes in different compilers
pure is a function attribute which says that a function does not modify any global memory.
const is a function attribute which says that a function does not read/modify any global memory.
Given that ...
5
votes
3answers
175 views
Is smtplib pure python or implemented in C?
My question is very straight forward: Is smtplib pure python or implemented in C?
5
votes
1answer
150 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
107 views
Is it possible to write these pure_assert and const_assert macros?
The GCC __attribute__((pure)) and __attribute__((const)) allow functions to be declared as non–side-effecting and referentially transparent, respectively; let's say I want to write pure_assert ...
4
votes
4answers
863 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", ...
3
votes
2answers
106 views
How is this pure function able to modify non-private state?
TDPL, p. 167:
as long as the mutable state in a function is entirely transitory (i.e., allocated on the stack) and private (i.e., not passed along by reference to functions that may taint it), ...
3
votes
1answer
96 views
Checkout of git repository in pure PHP
I need to to a git checkout in pure PHP.
I already tried this ( http://www.phpclasses.org/package/5310-PHP-Retrieve-project-files-from-GIT-repositories.html ) with HTTP and SASL, but I didn't really ...
3
votes
2answers
259 views
How to tell code contracts a delegate specified as argument is Pure?
Consider the following code:
int SomeField;
void Foo([Pure] Func<int, object> getData)
{
Contract.Requires(getData != null);
Contract.Requires(getData(this.SomeField) != null);
}
I ...
3
votes
4answers
240 views
Why doesn't GCC force parameters in __attribute__((pure)) functions to be const?
The following code compiles without warnings under GCC 4.2, and as far as I can tell, it really shouldn't:
#include <fstream>
__attribute__((pure))
double UnpureFunction(double* x) {
x[0] = ...
3
votes
3answers
743 views
C++: pure virtual assignment operator
why if we have pure virtual assignment operator in a base class, then we implement that operator on the derived class, it give linker error on the base class?
currently I only have the following ...
3
votes
4answers
238 views
Is there a html-only templates system for php?
I have started coding in clojure, and I'm really impressed by Enlive. One thing that I really like about it is that Enlive uses html-only templates. So a template is a file with html in it, ending ...
3
votes
2answers
335 views
In C++ is it possible to have a defined purely virtual function?
Here's the deal. I have a big class hierarchy and I have this one method that is extended all the way through. The method always has to look at one or two more variable at each new level and these ...
2
votes
2answers
103 views
What does pure function returning pure mean?
What does it mean for a pure function to return pure?
pure int doubleMe(in int i) pure { return i * 2; }
The code compiles without giving redundant storage class pure, so I suppose this is not a ...
2
votes
1answer
86 views
Pure CSS Selected Tab On Load Behavior
I found this CSS Menu Tabs on the internet and it works great without any scripts. Unfortunately is has 2 issues. The first issue is that when page loads it displays the contents of the last tab. I ...
2
votes
3answers
248 views
Are idempotent functions the same as pure functions?
I read Wikipedia's explanation of idempotence.
I know it means a function's output is determined by it's input.
But I remember that I heard a very similar concept: pure function.
I Google them but ...
2
votes
4answers
160 views
interface overhead
I've a simple class that looks like Boost.Array. There are two template parameters T and N. One drawback of Boost.Array is, that every method that uses such an array, has to be a template with ...
2
votes
5answers
6k views
Difference between a virtual function and a pure virtual function [closed]
Possible Duplicate:
C++ Virtual/Pure Virtual Explained
Hi,
Need to know what is the difference between a pure virtual function and a virtual function?
I know "Pure Virtual Function is a ...
2
votes
2answers
70 views
Pragmatism or purity - Should we rely on GUI framework to store program state?
I was once in charged of creating a C# custom user control. It's a control with a bunch of collapsible sections. The control that user could click on it to toggle between collapse/expand state is a ...
2
votes
1answer
317 views
2
votes
2answers
235 views
Domain Layer access to Persistence stuff
I am trying to keep my domain layer as "pure" as possible without weaving in persistence or other infrastructure concerns. However, there are times when my domain layer needs to use the services of ...
2
votes
4answers
378 views
What is the effect of overriding a (regular) virtual method by a pure virtual method?
Let's say we have
class A {
public:
virtual int foo() { cout << "foo!"; }
}
class B : public A {
public:
virtual int foo() =0;
}
class C : public B {
public:
...
2
votes
2answers
1k views
Pure PHP rrdtool
does anyone know a pure-php implementation of rrdtool? I googled this question, but only found answers about interfacing PHP & rrd...
1
vote
0answers
23 views
Locally editing a purely functional tree
Let's define a tree T:
A
/ \
B C
/ \
D E
Let's say a new node is added to E, yielding T':
A
/ \
B C
/ \
D E
\
G
In a mutable language this is an easy task ...
1
vote
1answer
46 views
Fortran: IO in pure procedures
I'm trying to incoporate error checking within a pure procedure I am writing. Something like:
pure real function func1(output_unit,a)
implicit none
integer :: a, output_unit
if (a < ...
1
vote
1answer
108 views
WebForms vs MVC3
Please, I need your help
I'm going to start a new Pure Ajax Web Developement.
I have been investigating WebForms and MVC3 and I'm not very sure which fits better for our project.
I know that in ...
1
vote
6answers
131 views
Can a class still be pure abstract if it has a non-pure destructor?
I am working on an exercise which asks me to take a base class Rodent and make it a pure abstract class. My understanding of a pure abstract class is that it acts as an interface and only contains ...
1
vote
1answer
122 views
C: Anyone knows how the “C mystery” code works? [closed]
While surfing on the Internet I came across this:
#include <stdio.h>
main(t,_,a)
char *a;
{return!0<t?t<3?main(-79,-13,a+main(-87,1-_,
main(-86, 0, a+1 )+a)):1,t<_?main(t+1, _, a ...
1
vote
0answers
50 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 ...
1
vote
1answer
56 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
1answer
33 views
PURE use default value
I'm using PURE from BeeBole for filling some HTML templates with JSON, everything works perfect except that I can't find how to pass a default value when a missing property, and I wanted to do this ...
1
vote
6answers
226 views
How do I call all functions from sub-classes when they were defined as pure virtual in the super-class?
The main question is how do I implement startTest() so that it calls runTest in all the subclasses. Thanks!
/*******************
COMPILER TEST
*******************/
class archeTest
{
protected:
...
1
vote
2answers
470 views
Pure ActionScript 3.0 - Memory Game
I'm a beginner of ActionScript 3.0. I'm making a simple memory game, the tool I'm using is Eclipse with flexsdk plugin. Right now I've done the shuffle and display images, and the cover of the images ...
1
vote
3answers
249 views
How can a base class satisfy the definition of a parent's pure virtual function using another parent's function
I am extending an existing C++ project. I have a base class that derives from two parent classes. One of the parents has a pure virtual function. I want that pure virtual function to be defined by ...
1
vote
3answers
1k views
Pure virtual method called
I understand why calling a virtual function from a constructor is bad, but I'm not sure why defining a destructor would result in a "pure virtual method called" exception. The code uses const values ...
0
votes
0answers
60 views
How do I assign an 'href=tel:' attribute to this anchor link (pure.js template language)?
I'm using the pure.js template engine.
index.html.js:
window.resultsTemplate = $('#resultsListing>ol.results').compile({
'li.place':{
'place<-':{
...
0
votes
3answers
49 views
Listen for events on certain element at window level - Javascript, no library
I want to listen for events on <p> elements at window or document level as there are too many such elements to attach an onclick event hander for each.
This is what I've got:
...
0
votes
0answers
44 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 ...