Slashdot Mirror


User: kushal_kumaran

kushal_kumaran's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:It all depends on Project Aims For 5x Increase In Python Performance · · Score: 1

    If you used an std::vector, you couldn't have a bottleneck, for the simple reason that the std::vector is an array.

    There might be systems on which this is true, but not on the c++ libraries on my mac. When I was trying to figure out what was going wrong with my vector-based program, I got to look at a lot of vectors from within gdb, and they have a neat bucket system going on that I'm sure is very fancy and clever, but let me tell you, it is not just an array, and good luck figuring out from the data alone what is stored in it unless you already know an awful lot about the underlying implementation...

    The storage for a std::vector is required by the C++ standard to be an array. See http://www.parashift.com/c++-faq-lite/containers.html#faq-34.3

  2. Re:It's Sir Arthur Conan Doyle, not Haddon. on The Curious Incident of Sun in the Night-Time · · Score: 1

    In fact, it was Inspector Gregory with whom Holmes has this dialogue.

    Check out Silver Blaze at http://www.gutenberg.org/etext/834

  3. Re:Kool! on KDE 3.5 Released · · Score: 1

    I've used gnomevfs. They sound similar. How is it different from KIOslaves?