Pinned Loading
-
Pack_to_cout.hpp
Pack_to_cout.hpp 1template<typename T>
2concept Printable = requires (T val) { std::cout<<val; };
34template<char seperator,typename...Type>
5requires (Printable<Type>,...) -
String_Concatination.hpp
String_Concatination.hpp 1#include <string>
2#include <string_view>
34template<typename...T>
5concept all_strings = std::is_same_v<T...,std::string> || std::is_same_v<T...,std::string_view>; -
Braced Print - C++ 17 - 20
Braced Print - C++ 17 - 20 1// Non algorithm include version2template<typename...Ranges>
3requires(std::ranges::range<Ranges>,...)4void braced_print(Ranges&&...ranges) {5using namespace std::literals;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.