Forgot your password?

typodupeerror
Unix

Dennis Ritchie, creator of C and developer of UNIX->

Submitted by Claudix
Claudix writes "Rob Pike, co-creator of Inferno OS that worked with Ritchie in the past, has confirmed it. The creator of C and developer of UNIX has died at age of 70. This man is completely unknown by the general public but all of we know that Ritchie's programming language and OS made Linux, Macintosh, Android, web technology and a big etcetera possible. RIP."
Link to Original Source

Comment: Re:C++ could have been a lot faster (Score 1) 670

by xquark (#36460106) Attached to: C++ the Clear Winner In Google's Language Performance Tests

Using stl containers is not the issue, most people use stl containers in their default mode. My point was to use custom allocators with such containers. Specifically stack based ones if the container will only exists within a function call etc. perhaps even used EA-STL

As for expression templates, its not all about compile time computations, most often than not its a mechanism to explicitly specify how a computation should be done - this happens a lot in linear-algebra based implementation - check out the various uses in Blitz++, Boost Fusion, Boost Graph etc..

Also note move semantics weren't used with the compiler/library mentioned in the paper.

In short if the above were done/used the difference would have been MUCH greater.

Do not clog intellect's sluices with bits of knowledge of questionable uses.

Working...