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));
struct non_convertible_to_int {};
h.bin(non_convertible_to_int{});
h.at(non_convertible_to_int{});
}