MCPcopy Create free account
hub / github.com/Kitware/VTK / Parse

Function Parse

IO/Core/vtkURI.h:237–240  ·  view source on GitHub ↗

* @brief Create a new URI from a string. * * Perform as if by calling `vtkURI::Parse(uri.data(), uri.size())`. * * @param uri the URI string representation, may be empty. * @return nullptr if URI syntax checks do not pass, otherwise a new vtkURI. */

Source from the content-addressed store, hash-verified

235 * @return nullptr if URI syntax checks do not pass, otherwise a new vtkURI.
236 */
237 static vtkSmartPointer<vtkURI> Parse(const std::string& uri)
238 {
239 return Parse(uri.data(), uri.size());
240 }
241
242 /**
243 * @brief Create a new URI from a string.

Callers 2

SetBaseURIMethod · 0.70
LoadMethod · 0.70

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected