| 122 | */ |
| 123 | template <class T> |
| 124 | size_t appendBitwise(const T* obj, size_t count) { |
| 125 | const size_t sz = count * sizeof(T); |
| 126 | return append(folly::StringPiece(reinterpret_cast<const char*>(obj), sz)); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Convenience function that appends the bitwise representation of a |