FastLED 3.9.15
Loading...
Searching...
No Matches
str_ui.cpp
Go to the documentation of this file.
1// UI-specific string functionality
2// This file is only compiled/linked when UI features are actually used
3// Breaking the dependency chain from core string functionality to UI system
4
5#include "fl/str.h"
6#include "platforms/shared/ui/json/ui_internal.h"
7
8namespace fl {
9
10// Implementation of UI-specific append method
11// This will only be linked if JsonUiInternal is actually used somewhere
12string &string::append(const JsonUiInternal& val) {
13 append(val.name());
14 return *this;
15}
16
17} // namespace fl
string & append(const BitsetFixed< N > &bs)
Definition str.h:675
IMPORTANT!
Definition crgb.h:20