| 142 | // etc. |
| 143 | template <typename T> |
| 144 | maybe<T> read_value(const std::string& str) |
| 145 | { |
| 146 | return to_maybe(read_value_result<T>(str)); |
| 147 | } |
| 148 | |
| 149 | // API search type: read_value_with_default : (a, String) -> a |
| 150 | // fwd bind count: 1 |
nothing calls this directly
no test coverage detected