Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in language-lawyer

Is int &ref = ref; well formed

Why is std::is_copy_constructible_v<std::vector<MoveOnlyType>> true?

Are enum values allowed in a std::integer_sequence?

c++ c++14 language-lawyer

Why does ranges::for_each return the function?

Is strict aliasing one-way?

Terminology: why "floating multiply-add" instead of "fused multiply-add"?

Converting constructor of templated non-type template parameter

c++ language-lawyer c++20

What is an update stream in C?

c stream language-lawyer

Use of std::uninitialized_copy to an initialized memory

c++ copy language-lawyer

Do all const objects have static storage duration?

CTAD rules regarding implicit deduction guides

c++ language-lawyer c++20 ctad

Compound literal is created once for a given scope

Is it legal to cast a repr(C) struct pointer to pointer to its first field?

(Where) does the C standard define the result of adding/subtracting two booleans?

C++23: Is it valid to modify the elements of a `zip_view`?

Is passing pointer to an array as pointer to pointer UB in C?

Deducing type of initializer list by first element

Pointer casting offset of a class with single inheritance

std::vector of struct: what will be the initial values of the members of the struct after a vector resize?