Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-design

Why doesn't std::array's operator[] retain the value category of the array?

Why pointer (*) and array ([]) symbols are bound to variable name and not to type in variable declaration?

Why aren't traits Sized by default?

rust traits language-design

Different behavior of -> (right-arrow) and <- (left arrow) on a for loop

r language-design

Why does Python have `reversed`?

python language-design

Why doesn't Java have automatic properties like C#? [closed]

Is it possible to make zero-allocation coroutine runtime in C++?

Unreachable code: error or warning? [closed]

How can I write like "x == either 1 or 2" in a programming language? [duplicate]

Duck typing, must it be dynamic?

Which Forth to start porting from?

Why does C++ not have an exponentiation operator?

What's the point of deleted virtual functions?

What is the purpose of Rust's function parameter syntax over C's?

c rust language-design

Typed abstract syntax and DSL design in Haskell

Why are jagged arrays in C# defined in the opposite way?

c# language-design

Reflection: Why are there methods like setAccessible()?

Why does the standard require only input iterators for std::distance, rather than forward iterators?