Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-design

Why doesn't Java warn about a == "something"?

java language-design

Why did the C# designers attach three different meanings to the 'using' keyword? [closed]

c# language-design

How to implement closures without gc?

C# - what are the benefits of "partial" classes?

Boolean true - positive 1 or negative 1?

Why are polymorphic messages so much more powerful in practice than the combination of unification and backtracking?

Python Virtual Machine architecture diagrams/references [closed]

c++ why isn't there something like length(array)? [closed]

c++ arrays language-design

What was the reason for Swift assignment evaluation to void?

Scala variadic functions and Seq

Why use curly braces over parentheses?

scala language-design

Compiler error about class graph being not finitary due to a expansively recursive type parameter

Why does Java allow for labeled breaks on arbitrary statements?

java language-design break

why c/c++ allows omission of leftmost index of a multidimensional array in a function call?

What is the rationale in allowing `?` to be escaped?

What is the difference between Mirror based reflection and traditional reflection?

What's the use case of secondary constructors in abstract classes?

Is C# platform neutral?

c# language-design

Which guarantees do Scala's singletons have regarding serialization?

Who invented the throw/try/catch[/finally] kind of error handling?