Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is the author's union-based implementation of an optional<bool> well-defined in P2641?

C++20 consteval functions and constexpr variables - are they guaranteed to be evaluated at compilation time?

Can anonymous union be simply `const` (not `constexpr`)?

Unusual behavior of standard library function abs() on different C++ compilers

How to access an object representation according to the c++ standard?

Pointer to abominable function type? Compiler bug?

c++ language-lawyer c++23

Why is having ambiguous (default) constructor due to overloading not an error or at least a warning?

Is it safe to fread 0 bytes into a NULL-pointer?

c null language-lawyer fread

Is the order of destructuring assignment in JavaScript guaranteed?

Requires clause positioning in C++20 function templates

How is 1.0 / 3.0 not an undefined operation in C++? (not representable in float)

Is this an illegal aliasing? [duplicate]

c++ language-lawyer

Implement is_destructible with Detected Idiom

How is it that we're allowed to create a const std::vector without any initializer unlike normal const objects

c++ vector stl language-lawyer

Does providing an explicit deduction guide disable the generation/formation of implicit deduction guides

CRTP std::is_default_constructible not working as expected

Does "if constexpr(something false)" ALWAYS omit template instantiation

Does my class satisfy the requirements of an iterator?