| 3118 | DAS_API char * builtin_string_clone ( const char *str, Context * context, LineInfoArg * at ); |
| 3119 | |
| 3120 | DAS_API __forceinline bool builtin_empty(const char* str) { return !str || str[0] == 0; } |
| 3121 | DAS_API __forceinline bool builtin_empty_das_string(const string & str) { return str.empty(); } |
| 3122 | |
| 3123 | template <typename TT, typename QQ> |
no outgoing calls
no test coverage detected