| 131 | |
| 132 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 133 | inline |
| 134 | size_t |
| 135 | ByteStream<StreamBuf, TypeTraits, IsMutable>::available() const { |
| 136 | if (this->size() < this->tell()) |
| 137 | return 0; |
| 138 | else |
| 139 | return this->size() - this->tell(); |
| 140 | } |
| 141 | |
| 142 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 143 | inline |