WPILibC++ 2024.1.1-beta-4
wpi::log::FloatArrayLogEntry Class Reference

Log array of float values. More...

#include <wpi/DataLog.h>

Inheritance diagram for wpi::log::FloatArrayLogEntry:
wpi::log::DataLogEntry

Public Member Functions

 FloatArrayLogEntry ()=default
 
 FloatArrayLogEntry (DataLog &log, std::string_view name, int64_t timestamp=0)
 
 FloatArrayLogEntry (DataLog &log, std::string_view name, std::string_view metadata, int64_t timestamp=0)
 
void Append (std::span< const float > arr, int64_t timestamp=0)
 Appends a record to the log. More...
 
void Append (std::initializer_list< float > arr, int64_t timestamp=0)
 Appends a record to the log. More...
 
- Public Member Functions inherited from wpi::log::DataLogEntry
 DataLogEntry (const DataLogEntry &)=delete
 
DataLogEntryoperator= (const DataLogEntry &)=delete
 
 DataLogEntry (DataLogEntry &&rhs)
 
DataLogEntryoperator= (DataLogEntry &&rhs)
 
 operator bool () const
 
void SetMetadata (std::string_view metadata, int64_t timestamp=0)
 Updates the metadata for the entry. More...
 
void Finish (int64_t timestamp=0)
 Finishes the entry. More...
 

Static Public Attributes

static constexpr const char * kDataType = "float[]"
 

Additional Inherited Members

- Protected Member Functions inherited from wpi::log::DataLogEntry
 DataLogEntry ()=default
 
 DataLogEntry (DataLog &log, std::string_view name, std::string_view type, std::string_view metadata={}, int64_t timestamp=0)
 
- Protected Attributes inherited from wpi::log::DataLogEntry
DataLogm_log = nullptr
 
int m_entry = 0
 

Detailed Description

Log array of float values.

Constructor & Destructor Documentation

◆ FloatArrayLogEntry() [1/3]

wpi::log::FloatArrayLogEntry::FloatArrayLogEntry ( )
default

◆ FloatArrayLogEntry() [2/3]

wpi::log::FloatArrayLogEntry::FloatArrayLogEntry ( DataLog log,
std::string_view  name,
int64_t  timestamp = 0 
)
inline

◆ FloatArrayLogEntry() [3/3]

wpi::log::FloatArrayLogEntry::FloatArrayLogEntry ( DataLog log,
std::string_view  name,
std::string_view  metadata,
int64_t  timestamp = 0 
)
inline

Member Function Documentation

◆ Append() [1/2]

void wpi::log::FloatArrayLogEntry::Append ( std::initializer_list< float >  arr,
int64_t  timestamp = 0 
)
inline

Appends a record to the log.

Parameters
arrValues to record
timestampTime stamp (may be 0 to indicate now)

◆ Append() [2/2]

void wpi::log::FloatArrayLogEntry::Append ( std::span< const float >  arr,
int64_t  timestamp = 0 
)
inline

Appends a record to the log.

Parameters
arrValues to record
timestampTime stamp (may be 0 to indicate now)

Member Data Documentation

◆ kDataType

constexpr const char* wpi::log::FloatArrayLogEntry::kDataType = "float[]"
staticconstexpr

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