C++ Logo

std-discussion

Advanced search

Re: Templated operators for std::bitset

From: Vladimir Grigoriev <vlad.moscow_at_[hidden]>
Date: Fri, 27 Sep 2019 15:45:43 +0300
Before submitting a proposal it is interesting to know everyone's opinion.:)

With best regards,
Vlad from Moscow

You can meet me at http://cpp.forum24.ru/ or www.stackoverflow.com or http://ru.stackoverflow.com

>Пятница, 27 сентября 2019, 15:33 +03:00 от Andrew Tomazos <andrewtomazos_at_[hidden]>:
>
>This is a proposal. Steps here: https://isocpp.org/std/submit-a-proposal
>
>
>On Fri, Sep 27, 2019 at 10:02 PM Vladimir Grigoriev via Std-Discussion < std-discussion_at_[hidden] > wrote:
>>Similar to the usual arithmetic conversions the operators of the standard class std::bitset should be templated.with different sizes
>>
>>For example
>>
>>template<size_t N1, size_t N2>
>>bitset<std::max( N1, N2 )> operator &( const bitset<N1> &, const bitset<N2> & ) noexcept;
>>
>>Or
>>
>>template <size_t M>
>>bitset<N> & operator &=( const bitset<M> & rhs) noexcept;
>>
>>With best regards,
>>Vlad from Moscow
>>
>>You can meet me at http://cpp.forum24.ru/ or www.stackoverflow.com or http://ru.stackoverflow.com --
>>Std-Discussion mailing list
>>Std-Discussion_at_[hidden]
>>https://lists.isocpp.org/mailman/listinfo.cgi/std-discussion

Received on 2019-09-27 07:47:55