the customization point - accept const char* and convert to int - then call index method of base class
| 661 | // - accept const char* and convert to int |
| 662 | // - then call index method of base class |
| 663 | int index(value_type s) const { return integer::index(std::atoi(s)); } |
| 664 | }; |
| 665 | |
| 666 | auto h = make(Tag(), custom_axis(0, 3)); |
no outgoing calls
no test coverage detected