Returns true if argument types and return type specified in the constructor match specified signature.
| 76 | // Returns true if argument types and return type specified in the constructor |
| 77 | // match specified signature. |
| 78 | bool tryBind() { |
| 79 | return bound_; |
| 80 | } |
| 81 | |
| 82 | private: |
| 83 | bool bound_{false}; |
no outgoing calls