MCPcopy Create free account
hub / github.com/apache/tvm-ffi / EscapeString

Function EscapeString

include/tvm/ffi/string.h:883–885  ·  view source on GitHub ↗

! * \brief Escape a string for JSON output. * \deprecated Use EscapeStringJSON instead. * \param value The input string * \return The escaped string, quoted with double quotes */

Source from the content-addressed store, hash-verified

881 * \return The escaped string, quoted with double quotes
882 */
883[[deprecated("Use EscapeStringJSON instead")]] inline String EscapeString(const String& value) {
884 return EscapeStringJSON(value);
885}
886
887/*!
888 * \brief Return a Python-style escaped string representation.

Callers

nothing calls this directly

Calls 1

EscapeStringJSONFunction · 0.85

Tested by

no test coverage detected