WPILibC++ 2024.1.1-beta-4
Table Functions

Functions

NT_Entry nt::GetEntry (NT_Inst inst, std::string_view name)
 Get Entry Handle. More...
 
std::string nt::GetEntryName (NT_Entry entry)
 Gets the name of the specified entry. More...
 
NT_Type nt::GetEntryType (NT_Entry entry)
 Gets the type for the specified entry, or unassigned if non existent. More...
 
int64_t nt::GetEntryLastChange (NT_Handle subentry)
 Gets the last time the entry was changed. More...
 
Value nt::GetEntryValue (NT_Handle subentry)
 Get Entry Value. More...
 
bool nt::SetDefaultEntryValue (NT_Entry entry, const Value &value)
 Set Default Entry Value. More...
 
bool nt::SetEntryValue (NT_Entry entry, const Value &value)
 Set Entry Value. More...
 
void nt::SetEntryFlags (NT_Entry entry, unsigned int flags)
 Set Entry Flags. More...
 
unsigned int nt::GetEntryFlags (NT_Entry entry)
 Get Entry Flags. More...
 
std::vector< Valuent::ReadQueueValue (NT_Handle subentry)
 Read Entry Queue. More...
 

Detailed Description

Function Documentation

◆ GetEntry()

NT_Entry nt::GetEntry ( NT_Inst  inst,
std::string_view  name 
)

Get Entry Handle.

Parameters
instinstance handle
nameentry name (UTF-8 string)
Returns
entry handle

◆ GetEntryFlags()

unsigned int nt::GetEntryFlags ( NT_Entry  entry)

Get Entry Flags.

Parameters
entryentry handle
Returns
Flags value (bitmask of NT_EntryFlags)

◆ GetEntryLastChange()

int64_t nt::GetEntryLastChange ( NT_Handle  subentry)

Gets the last time the entry was changed.

Returns 0 if the handle is invalid.

Parameters
subentrysubscriber or entry handle
Returns
Entry last change time

◆ GetEntryName()

std::string nt::GetEntryName ( NT_Entry  entry)

Gets the name of the specified entry.

Returns an empty string if the handle is invalid.

Parameters
entryentry handle
Returns
Entry name

◆ GetEntryType()

NT_Type nt::GetEntryType ( NT_Entry  entry)

Gets the type for the specified entry, or unassigned if non existent.

Parameters
entryentry handle
Returns
Entry type

◆ GetEntryValue()

Value nt::GetEntryValue ( NT_Handle  subentry)

Get Entry Value.

Returns copy of current entry value. Note that one of the type options is "unassigned".

Parameters
subentrysubscriber or entry handle
Returns
entry value

◆ ReadQueueValue()

std::vector< Value > nt::ReadQueueValue ( NT_Handle  subentry)

Read Entry Queue.

Returns new entry values since last call.

Parameters
subentrysubscriber or entry handle
Returns
entry value array

◆ SetDefaultEntryValue()

bool nt::SetDefaultEntryValue ( NT_Entry  entry,
const Value value 
)

Set Default Entry Value.

Returns copy of current entry value if it exists. Otherwise, sets passed in value, and returns set value. Note that one of the type options is "unassigned".

Parameters
entryentry handle
valuevalue to be set if name does not exist
Returns
False on error (value not set), True on success

◆ SetEntryFlags()

void nt::SetEntryFlags ( NT_Entry  entry,
unsigned int  flags 
)

Set Entry Flags.

Parameters
entryentry handle
flagsflags value (bitmask of NT_EntryFlags)

◆ SetEntryValue()

bool nt::SetEntryValue ( NT_Entry  entry,
const Value value 
)

Set Entry Value.

Sets new entry value. If type of new value differs from the type of the currently stored entry, returns error and does not update value.

Parameters
entryentry handle
valuenew entry value
Returns
False on error (type mismatch), True on success