MCPcopy Create free account
hub / github.com/audacity/audacity / FromChars

Function FromChars

libraries/lib-string-utils/FromChars.cpp:153–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151} // namespace
152
153FromCharsResult FromChars(const char* buffer, const char* last, float& value) noexcept
154{
155 const auto result = fast_float::from_chars(buffer, last, value);
156 return { result.ptr, result.ec };
157}
158
159FromCharsResult FromChars(const char* buffer, const char* last, double& value) noexcept
160{

Callers 7

TryGetMethod · 0.85
TryGetIntegerMethod · 0.85
IsUrlExpiredFunction · 0.85
ImporterMethod · 0.85
GetValueMethod · 0.85
TestFromCharsFunction · 0.85
GetId3v2GenreFunction · 0.85

Calls 2

from_charsFunction · 0.85
IntFromCharsFunction · 0.85

Tested by 1

TestFromCharsFunction · 0.68