Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
flutter::CustomEncodableValue Class Reference

#include <encodable_value.h>

Public Member Functions

 CustomEncodableValue (const std::any &value)
 
 ~CustomEncodableValue ()=default
 
 operator std::any & ()
 
 operator const std::any & () const
 
bool operator< (const CustomEncodableValue &other) const
 
bool operator== (const CustomEncodableValue &other) const
 

Detailed Description

Definition at line 61 of file encodable_value.h.

Constructor & Destructor Documentation

◆ CustomEncodableValue()

flutter::CustomEncodableValue::CustomEncodableValue ( const std::any &  value)
inlineexplicit

Definition at line 63 of file encodable_value.h.

63: value_(value) {}

References value.

◆ ~CustomEncodableValue()

flutter::CustomEncodableValue::~CustomEncodableValue ( )
default

Member Function Documentation

◆ operator const std::any &()

flutter::CustomEncodableValue::operator const std::any & ( ) const
inline

Definition at line 70 of file encodable_value.h.

70{ return value_; }

◆ operator std::any &()

flutter::CustomEncodableValue::operator std::any & ( )
inline

Definition at line 68 of file encodable_value.h.

68{ return value_; }

◆ operator<()

bool flutter::CustomEncodableValue::operator< ( const CustomEncodableValue other) const
inline

Definition at line 81 of file encodable_value.h.

81 {
82 return this < &other;
83 }

◆ operator==()

bool flutter::CustomEncodableValue::operator== ( const CustomEncodableValue other) const
inline

Definition at line 84 of file encodable_value.h.

84 {
85 return this == &other;
86 }

The documentation for this class was generated from the following file: