template<size_t N> inline void csr(bitset<N>& bs, size_t n) { bs = (bs>>n) | (bs << (N-n)); }
Post a Comment
0 comments:
Post a Comment