by brlebtag on 9/18/18, 6:45 PM with 2 comments
I would add:
* traits * PHP's magic functions * coroutine * C/C++ family syntax * Java's OOP * Erlang/Elixir's concurrent model * Elixir's pattern matching * C++'s templates * C++'s operator overload * python's slice * Erlang/Elixir's preemptive green threads * package manager * C#'s property * async/await
What about you guys?
by RNeff on 9/18/18, 7:02 PM
by wfwefwef32 on 9/18/18, 7:07 PM
template<class Type> class A {
if constexpr (std::is_same<Type, int>::value) { int a; }
}