| 60 | |
| 61 | template <typename... Args> |
| 62 | static std::string FlattenToString(Args &&...args) { |
| 63 | const auto &vec = ToVector(std::forward<Args>(args)...); |
| 64 | return "[" + paddle::string::join_strings(vec, ',') + "]"; |
| 65 | } |
| 66 | |
| 67 | } // namespace funcs |
| 68 | } // namespace phi |
nothing calls this directly
no test coverage detected