cpp14

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 1,592 public repositories matching this topic...
-
Updated
Oct 3, 2020 - C++
-
Updated
Oct 1, 2020 - C++
Would it make sense to add a variadic overload of make_zip_iterator
that composes the existing make_zip_iterator
with make_tuple
? I have this in my own code, and I find that it reduces syntactic overhead.
template<typename... Iterators>
__host__ __device__
zip_iterator<thrust::tuple<Iterators...>> make_zip_iterator(thrust::tuple<Iterators...> t)
{
return zip_iterator<thrust::tupl
-
Updated
Sep 29, 2020 - C++
-
Updated
Oct 2, 2020 - C++
-
Updated
Sep 26, 2020 - C++
-
Updated
Oct 3, 2020 - C++
-
Updated
Oct 1, 2020 - C++
-
Updated
Sep 25, 2020 - C++
-
Updated
Sep 23, 2020 - C++
-
Updated
Aug 28, 2020 - C++
-
Updated
Sep 18, 2020 - C++
-
Updated
Sep 21, 2020
-
Updated
Oct 2, 2020 - C++
I would like to be able to determine my device-wide primitive's temp_storage_bytes before I have all of the primitive's arguments ready. The interface for obtaining it ostensibly requires everything to be ready for the actual run - and the documentation does not make it clear what arguments it actually needs and what it's going to do with them (e.g. will it look at the input at all, in any way? Pr
-
Updated
Oct 3, 2020 - C++
Add Runnable links of the code below the example.
Use link name Run Code which links to a Online C++ complier conatining the example code.
Use Rextester as the Online C++ Compiler (If you have a better suggesstion please comment).
Follow below steps to generate the Run Code Link.
- Go to Rextester
- Copy or write the example
-
Updated
Sep 28, 2020 - C++
-
Updated
May 15, 2020 - Emacs Lisp
-
Updated
Nov 12, 2019 - C++
-
Updated
Oct 4, 2020 - C++
The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
The same cppreference link als