Tagged Questions
The rationale tag has no wiki summary.
19
votes
5answers
4k views
Why does ActivePython exist?
What's ActivePython actually about?
From what I've read it's just standard Python with openssl and pyWin32 (on Win). No big deal I guess, I could install them in matter of minutes, and most people ...
12
votes
1answer
332 views
Why was std::swap moved to <utility>?
Why has std::swap been moved to the <utility> header for C++11?
N3290 C.2.7 says:
17.6.3.2
Effect on original feature: Function swap moved to a different header
Rationale: ...
11
votes
5answers
356 views
C++: rationale behind hiding rule
What's the rationale behind the hiding rule in C++?
class A { void f(int); }
class B : public A { void f(double); } // B::f(int) is hidden
If it is a meaningful feature I think it should also be ...
11
votes
5answers
377 views
Why is it ill-formed to have multi-line constexpr functions?
According to Generalized Constant Expressions—Revision 5 the following is illegal.
constexpr int g(int n) // error: body not just ‘‘return expr’’
{
int r = n;
while (--n > 1) r *= n;
...
10
votes
1answer
623 views
C++0x Smart Pointer Comparisons: Inconsistent, what's the rationale?
In C++0x (n3126), smart pointers can be compared, both relationally and for equality. However, the way this is done seems inconsistent to me.
For example, shared_ptr defines operator< be ...
10
votes
4answers
363 views
Is there a specific reason nested namespace declarations are not allowed in C++?
The standard does not allow code like this:
namespace Hello::World {
//Things that are in namespace Hello::World
}
and instead requires
namespace Hello { namespace World {
//Things that are in ...
6
votes
4answers
382 views
What is the point of DBNull? [closed]
In .NET there is the null reference, which is used everywhere to denote that an object reference is empty, and then there is the DBNull, which is used by database drivers (and few others) to denote... ...
6
votes
3answers
467 views
python variable scope
I'm teaching my self python and I was translating some sample code into this
class Student(object):
def __init__( self, name, a,b,c ):
self.name = name
self.a = a
self.b = ...
5
votes
2answers
245 views
Empty struct in C vs empty struct in C++
Why is empty struct in C a constraint violation? Why does this rule get changed in C++?
Are there any historical reasons?
4
votes
2answers
231 views
Rationale for Koenig lookup
What's the rationale of Koenig lookup?
Cannot avoid thinking of it like something that makes your code a lot harder to read and more instable.
Couldn't they define Koenig lookup so that it only work ...
2
votes
2answers
1k views
Why does CakePHP use different plural/singular naming conventions?
Can somebody perhaps explain here why on earth CakePHP has a convention of using plural names for db tables and controllers and singular for models? Why not always use singular terms, or always ...
1
vote
0answers
64 views
how does DHT works?
I grabbed the basic idea about DHT from wiki:
Store Data:
In a DHT-network, every node is responsible for a specific range of key-space. To store a file in the DHT, first, hash the file's name to ...
1
vote
5answers
174 views
What exactly was the rationale behind introducing references in c++?
From the discussion that has happened in my recent question (Why is a c++ reference considered safer than a pointer?), it raises another question in my mind: What exactly was the rationale behind ...
0
votes
1answer
49 views
chunking XML and loading it into relational tables
I work for a credit union (roughly 60K accounts). The statement process is from the '70s and it tightly coupled the data to the layout. In short, you run a job and it produces a text file that ...