Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-design

Why was IEnumerable<T> made covariant in C# 4?

Why don't PHP attributes allow functions?

I don't understand why we need the 'new' keyword

c# language-design

What's the motivation behind having copy and direct initialization behave differently?

Why isn't __new__ in Python new-style classes a class method?

Why did Matz choose to make Strings mutable by default in Ruby?

Why do C++ templates use the angle bracket syntax?

Most interesting non-mainstream language? [closed]

Why didn't C have a boolean data type prior to C99?

c language-design c99 c89

Why are there two assignment operators, `<-` and `->` in R?

r language-design s

Why are many languages case sensitive?

Why aren't there compiler-generated swap() methods in C++0x?

c++ language-design c++11

Why are await and async valid variable names?

What are practical guidelines for evaluating a language's "Turing Completeness"?

Where are expressions and constants stored if not in memory?

C# static member "inheritance" - why does this exist at all?

Why don't languages raise errors on integer overflow by default?

C++ iterators considered harmful?

Why doesn't Scala have static members inside a class?

What is the point of make_heap?

c++ stl language-design