Stroika Library 3.0d16
 
Loading...
Searching...
No Matches
Measurement.cpp
1/*
2 * Copyright(c) Sophist Solutions, Inc. 1990-2025. All rights reserved
3 */
4#include "Stroika/Frameworks/StroikaPreComp.h"
5
7
8#include "Measurement.h"
9
11
12using namespace Stroika::Frameworks;
13using namespace Stroika::Frameworks::SystemPerformance;
14
15/*
16 ********************************************************************************
17 ****************** SystemPerformance::Instrument::Measurement ******************
18 ********************************************************************************
19 */
21{
23 sb << "{"sv;
24 sb << "Type: "sv << fType;
25 sb << ", Value: "sv << fValue;
26 sb << "}"sv;
27 return sb;
28}
Similar to String, but intended to more efficiently construct a String. Mutable type (String is large...
String is like std::u32string, except it is much easier to use, often much more space efficient,...
Definition String.h:201