MCPcopy Create free account
hub / github.com/OpenDDS/OpenDDS / read_uint8_array

Method read_uint8_array

dds/DCPS/ValueReader.cpp:62–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62bool
63ValueReader::read_uint8_array(ACE_CDR::UInt8* value, size_t length)
64{
65 for (size_t i = 0; i != length; ++i) {
66 if (!begin_element()) return false;
67 if (!read_uint8(value[i])) return false;
68 if (!end_element()) return false;
69 }
70 return true;
71}
72#endif
73
74bool

Callers 2

operator>>Function · 0.80
array_extractionsFunction · 0.80

Calls

no outgoing calls

Tested by 1

array_extractionsFunction · 0.64