Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-design

Why the event loop existes from the beginning of JavaScript when there were almost no blocking operations

In an interpreter, what (usually) comes after the lexer?

Why is extern required for variables but not functions?

c extern language-design

Why does C++ not allow a parameter to be a default argument? [duplicate]

Functional programming and equation solvers

Why were charN_t designed as built-in types, but std::byte was not?

Why is the KeyEqual of std::unordered_map not used by its operator==?

Why can I access the base class aliased types from the derived class?

What are the advantages of returning -1 instead of null in indexOf(...)?

kotlin language-design

Why is there no empty char literal?

c# char language-design

Why is JavaScript UpdateExpression syntax so defined?

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++?