cpp_library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub toyama1710/cpp_library

:heavy_check_mark: bit/lsb.hpp

Verified with

Code

#ifndef LSB_HPP
#define LSB_HPP

#include <cstdint>

inline uint64_t lsb32(uint32_t bits) {
    return bits & (~bits + 1);
};
inline uint64_t lsb64(uint64_t bits) {
    return bits & (~bits + 1);
};
#endif
#line 1 "bit/lsb.hpp"



#include <cstdint>

inline uint64_t lsb32(uint32_t bits) {
    return bits & (~bits + 1);
};
inline uint64_t lsb64(uint64_t bits) {
    return bits & (~bits + 1);
};
Back to top page