Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
康桓瑋
康桓瑋 has asked
87
questions and find answers to
69
problems.
Stats
2.2k
EtPoint
557
Vote count
87
questions
69
answers
About
康桓瑋 questions
What is the rationale behind the iterator/sentinel of range adaptors providing the base() accessor?
Why the standard defines borrowed_subrange_t as common_range?
The redundancy of forward_iterator concept?
Why is ranges::basic_istream_view::begin() not cached?
C++20 concepts require operator overloading combine with user-define template operator overloading function
How to define a concept of a object that is can be structured binding?
Assignment operator of std::variant of custom type with deleted special member functions?
what are the constraints for std::ranges::make_heap?
Why does `iota(0) | take(0)` not model ranges::sized_range in C++20?
Ambiguous name lookup with C++20 using-enum-declaration
康桓瑋 answers
In what situations does `ranges::for_each` work but `for (auto&& elt : rg)` fail?
How to iterate over the size of a parameter pack with a compile-time index parameter
C++23: How to erase a subrange from vector
C++ concept that checks a value for requirements
Why can't I use lazy_split_view with a istream view instead of a string_view?
How to limit the template parameter to only floating point type
C++ function parameter that only accepts iterator to a specific type
count std::optional types in variadic template tuple
How can I enable/disable a function depending on the size of an array?
Custom range adaptor only works at the end of composition