Skip to content
View olive-tree-branch's full-sized avatar

Block or report olive-tree-branch

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Pack_to_cout.hpp Pack_to_cout.hpp
    1
    template<typename T>
    2
    concept Printable = requires (T val) { std::cout<<val; };
    3
    
                  
    4
    template<char seperator,typename...Type>
    5
    requires (Printable<Type>,...)
  2. String_Concatination.hpp String_Concatination.hpp
    1
    #include <string>
    2
    #include <string_view>
    3
    
                  
    4
    template<typename...T>
    5
    concept all_strings = std::is_same_v<T...,std::string> || std::is_same_v<T...,std::string_view>;
  3. Braced Print - C++ 17 - 20 Braced Print - C++ 17 - 20
    1
    // Non algorithm include version
    2
    template<typename...Ranges>
    3
    requires(std::ranges::range<Ranges>,...)
    4
    void braced_print(Ranges&&...ranges) {
    5
    	using namespace std::literals;