Search code examples
n={0,1,...,n-1} in C++...

c++c++14set-theory

Read More
Partial template specialization for when all template parameters are the same type...

c++c++14sfinaetemplate-specializationparameter-pack

Read More
Substituting `std::holds_alternative` in C++14 with mapbox variant...

c++c++14std-variant

Read More
Using is_XXX_v<> in C++14...

c++c++14type-traits

Read More
Is it ok to use std::ignore in order to discard a return value of a function to avoid any related co...

c++gccc++14

Read More
How to use a struct declared with 'constexpr' as a template parameter?...

c++c++14

Read More
Making `std::get` play nice with SFINAE...

c++c++14language-lawyersfinaestdtuple

Read More
Can I safely replace boost::shared_array<T> with std::shared_ptr<T[]>?...

boostc++14shared-ptr

Read More
memory_order_relaxed with c++11/14 in cppreference...

c++multithreadingc++11c++14relaxed-atomics

Read More
c++ 14 Variadic Templates to call different methods with enum...

c++c++14variadic-templates

Read More
Rationale behind making std::function require copy constructor...

c++c++14

Read More
Problem on SFINAE with `is_constructible` in constructor...

c++c++14sfinaetype-traits

Read More
Overhead of std::optional<T>?...

performanceg++c++14overheadstdoptional

Read More
Does the standard specify when function template instantiation side-effects are visible?...

c++templatesc++14language-lawyer

Read More
C++1y/C++14: Assignment to object outside its lifetime is not allowed in a constant expression?...

c++language-lawyerconstexprc++14

Read More
Converting a character range to int...

c++c++11c++14

Read More
How to binary search a std::vector BUT that return a RandomAccessIterator?...

c++data-structuresiteratorc++14std

Read More
How can I erase elements from a vector given a list of iterator?...

c++vectorc++14

Read More
assigning members of a pair to variables...

c++c++11c++14

Read More
Overloading function with multiple template definitions not possible?...

c++templatesc++14overloading

Read More
How to avoid `std::to_string()` making a very small double number to 0?...

c++floating-pointdoublec++14tostring

Read More
Fixing boost::optional undefined type error...

c++templatesboostc++14

Read More
Is it legal to initialize an array via a functor which takes the array itself as a parameter by refe...

c++c++17c++14stdarrayobject-construction

Read More
Specialize a method template with type parameter with a non-type one...

c++templatesc++14template-specializationnon-type-template-parameter

Read More
C++14 Template enable_if return type...

c++templatesc++14sfinae

Read More
Compile result different in GCC 13.1 and GCC 13.2 constructing a string...

c++gccc++14

Read More
Implement C++ template for generating an index sequence with a given range...

c++templatesmetaprogrammingc++14

Read More
what is the correct way to test if a type is an allocator?...

c++c++14type-traitsallocator

Read More
How to print the line number of the caller function from a template function?...

c++macrosc++14variadic-templatesparameter-pack

Read More
Is C++20 'char8_t' the same as our old 'char'?...

c++c++14language-lawyerc++20

Read More
BackNext