FTXUI
0.8.1
C++ functional terminal UI.
|
Go to the documentation of this file. 1 #ifndef FTXUI_UTIL_REF_HPP
2 #define FTXUI_UTIL_REF_HPP
16 const T&
operator*() {
return address_ ? *address_ : owned_; }
17 const T&
operator()() {
return address_ ? *address_ : owned_; }
18 const T*
operator->() {
return address_ ? address_ : &owned_; }
22 const T* address_ =
nullptr;
30 Ref(T t) : owned_(t) {}
31 Ref(T* t) : address_(t) {}
32 T&
operator*() {
return address_ ? *address_ : owned_; }
33 T&
operator()() {
return address_ ? *address_ : owned_; }
34 T*
operator->() {
return address_ ? address_ : &owned_; }
38 T* address_ =
nullptr;
46 StringRef(std::string ref) : owned_(std::move(ref)) {}
49 std::string&
operator*() {
return address_ ? *address_ : owned_; }
50 std::string*
operator->() {
return address_ ? address_ : &owned_; }
54 std::string* address_ =
nullptr;
66 std::wstring&
operator*() {
return address_ ? *address_ : owned_; }
67 std::wstring*
operator->() {
return address_ ? address_ : &owned_; }
71 std::wstring* address_ =
nullptr;
85 const std::string&
operator*() {
return address_ ? *address_ : owned_; }
86 const std::string*
operator->() {
return address_ ? address_ : &owned_; }
89 const std::string owned_;
90 const std::string* address_ =
nullptr;
99 size_t size()
const {
return ref_ ? ref_->size() : ref_wide_->size(); }
101 return ref_ ? (*ref_)[i] :
to_string((*ref_wide_)[i]);
105 const std::vector<std::string>* ref_ =
nullptr;
106 const std::vector<std::wstring>* ref_wide_ =
nullptr;
std::string & operator*()
An adapter. Own or reference an immutable object.
std::string operator[](size_t i) const
WideStringRef(std::wstring *ref)
ConstStringRef(std::string ref)
std::string to_string(const std::wstring &s)
Convert a UTF8 std::string into a std::wstring.
const std::string * operator->()
ConstStringRef(const std::string *ref)
std::wstring to_wstring(const std::string &s)
Convert a std::wstring into a UTF8 std::string.
ConstStringRef(const char *ref)
WideStringRef(std::wstring ref)
ConstStringListRef(const std::vector< std::wstring > *ref)
StringRef(std::string *ref)
std::wstring & operator*()
std::string * operator->()
StringRef(const wchar_t *ref)
An adapter. Own or reference a constant string. For convenience, this class convert multiple mutable ...
ConstStringListRef(const std::vector< std::string > *ref)
ConstStringRef(std::wstring ref)
An adapter. Own or reference an mutable object.
An adapter. Reference a list of strings.
StringRef(const char *ref)
std::wstring * operator->()
WideStringRef(const char *ref)
An adapter. Own or reference a constant string. For convenience, this class convert multiple mutable ...
StringRef(std::string ref)
An adapter. Own or reference a constant string. For convenience, this class convert multiple immutabl...
const std::string & operator*()
ConstStringRef(const std::wstring *ref)
ConstStringRef(const wchar_t *ref)
WideStringRef(const wchar_t *ref)