Tagged Questions

7
votes
4answers
269 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 …
4
votes
1answer
118 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 …
3
votes
2answers
275 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
3answers
59 views

Is smtplib pure python or implemented in C?

My question is very straight forward: Is smtplib pure python or implemented in C?
2
votes
1answer
143 views

C framework like Qt ?

Hi, is there a full-featured framework for C that is similar to Qt?
2
votes
1answer
107 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
352 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
4answers
246 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: …
1
vote
2answers
503 views

Pure PHP rrdtool

hello all, does anyone know a pure-php implementation of rrdtool? I googled this question, but only found answers about interfacing PHP & rrd...
0
votes
2answers
82 views

jQuery: Templating data

I have a unique situation where I'm building a site that will call data via AJAX and load it into "containers" (basically just divs styled and laid out according to elements retrieved from the AJAX …
0
votes
3answers
93 views

How to compile the generated AS

Hi guys, hope you can help me with this question. So, I've been working for a while with Flex, and had the crazy idea to create pure AS project. If I compile a Flex app with the -keep flag, the …