Bind the parse member function so tensorflow::Flags can call it.
| 68 | |
| 69 | // Bind the parse member function so tensorflow::Flags can call it. |
| 70 | std::function<bool(T)> bind() { |
| 71 | return std::bind(&Arg::Parse, this, std::placeholders::_1); |
| 72 | } |
| 73 | |
| 74 | private: |
| 75 | // Becomes true after parsing if the value was specified |
no outgoing calls