| 
| template<Tag TAG>  | 
| size_t  | ndn::encoding::prependNonNegativeIntegerBlock (EncodingImpl< TAG > &encoder, uint32_t type, uint64_t value) | 
|   | Prepend a TLV element containing a non-negative integer.  More...
  | 
|   | 
| template size_t  | ndn::encoding::prependNonNegativeIntegerBlock< EstimatorTag > (EncodingImpl< EstimatorTag > &, uint32_t, uint64_t) | 
|   | 
| template size_t  | ndn::encoding::prependNonNegativeIntegerBlock< EncoderTag > (EncodingImpl< EncoderTag > &, uint32_t, uint64_t) | 
|   | 
| Block  | ndn::encoding::makeNonNegativeIntegerBlock (uint32_t type, uint64_t value) | 
|   | Create a TLV block containing a non-negative integer.  More...
  | 
|   | 
| uint64_t  | ndn::encoding::readNonNegativeInteger (const Block &block) | 
|   | Read a non-negative integer from a TLV element.  More...
  | 
|   | 
| template<Tag TAG>  | 
| size_t  | ndn::encoding::prependEmptyBlock (EncodingImpl< TAG > &encoder, uint32_t type) | 
|   | Prepend an empty TLV element.  More...
  | 
|   | 
| template size_t  | ndn::encoding::prependEmptyBlock< EstimatorTag > (EncodingImpl< EstimatorTag > &, uint32_t) | 
|   | 
| template size_t  | ndn::encoding::prependEmptyBlock< EncoderTag > (EncodingImpl< EncoderTag > &, uint32_t) | 
|   | 
| Block  | ndn::encoding::makeEmptyBlock (uint32_t type) | 
|   | Create an empty TLV block.  More...
  | 
|   | 
| template<Tag TAG>  | 
| size_t  | ndn::encoding::prependStringBlock (EncodingImpl< TAG > &encoder, uint32_t type, const std::string &value) | 
|   | Prepend a TLV element containing a string.  More...
  | 
|   | 
| template size_t  | ndn::encoding::prependStringBlock< EstimatorTag > (EncodingImpl< EstimatorTag > &, uint32_t, const std::string &) | 
|   | 
| template size_t  | ndn::encoding::prependStringBlock< EncoderTag > (EncodingImpl< EncoderTag > &, uint32_t, const std::string &) | 
|   | 
| Block  | ndn::encoding::makeStringBlock (uint32_t type, const std::string &value) | 
|   | Create a TLV block containing a string.  More...
  | 
|   | 
| std::string  | ndn::encoding::readString (const Block &block) | 
|   | Read TLV-VALUE of a TLV element as a string.  More...
  | 
|   | 
| Block  | ndn::encoding::makeBinaryBlock (uint32_t type, const uint8_t *value, size_t length) | 
|   | Create a TLV block copying TLV-VALUE from raw buffer.  More...
  | 
|   | 
| Block  | ndn::encoding::makeBinaryBlock (uint32_t type, const char *value, size_t length) | 
|   | Create a TLV block copying TLV-VALUE from raw buffer.  More...
  | 
|   |