| 1719 | |
| 1720 | template <typename... Args> |
| 1721 | str format(Args &&...args) const { |
| 1722 | return attr("format")(std::forward<Args>(args)...); |
| 1723 | } |
| 1724 | |
| 1725 | private: |
| 1726 | /// Return string representation -- always returns a new reference, even if already a str |
no outgoing calls