Created
January 19, 2020 19:34
-
-
Save vinniefalco/e6cae6a80d0c5f0ece64652307c24a59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct pmeasure | |
{ | |
std::size_t n = 0; | |
void | |
append(std::uint32_t) noexcept | |
{ | |
++n; | |
} | |
void | |
insert( | |
std::size_t, | |
std::uint32_t) noexcept | |
{ | |
++n; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment