renamed method bin to method at

This commit is contained in:
Hans Dembinski
2018-07-05 09:10:04 +02:00
parent 753e4882fd
commit b9a35f7b4f
22 changed files with 292 additions and 273 deletions

View File

@@ -5,5 +5,5 @@ using namespace boost::histogram;
int main() {
auto h = make_dynamic_histogram(axis::integer<>(0, 2),
axis::integer<>(0, 2));
h.bin(std::vector<int>({-2, 0}));
h.at(std::vector<int>({-2, 0}));
}