cxx
Here are 399 public repositories matching this topic...
Expected Behavior
I can pass std::vector<int32_t>, but the the c++ library I want to use uses int, not int32_t
std::vector<int> build_array() {
auto values = std::vector<int> {1,2,3,4,5};
for (auto& v: values) v = v * 2;
return values;
}Not sure how to get around this since I can't impl VectorElement for c_int due to the orphan rule? There must b
-
Updated
Aug 29, 2021 - C++
-
Updated
May 14, 2021 - C++
-
Updated
Jul 29, 2021 - 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
Aug 16, 2021 - C++
-
Updated
Aug 27, 2021 - Java
-
Updated
May 22, 2021 - Vim script
-
Updated
Aug 15, 2017 - C++
-
Updated
Aug 13, 2021 - Shell
-
Updated
Aug 30, 2021 - C++
-
Updated
May 21, 2020 - C++
-
Updated
Aug 12, 2021 - TypeScript
-
Updated
Aug 14, 2021 - C++
-
Updated
Oct 29, 2018 - C
-
Updated
Aug 3, 2021 - Python
-
Updated
Aug 15, 2021 - C++
-
Updated
Jan 23, 2021 - C++
Improve this page
Add a description, image, and links to the cxx topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cxx topic, visit your repo's landing page and select "manage topics."
First of all, great library!
I am having some confusion in understanding the role of
values_first2inset_difference_by_keyas mentioned here.In general terms, the result of set difference
D = A - Bwill not contain values fromBthereforevalues_first2can never be part ofD. So `val