-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathbyte_stream.cc
65 lines (53 loc) · 852 Bytes
/
byte_stream.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include "byte_stream.hh"
using namespace std;
ByteStream::ByteStream( uint64_t capacity ) : capacity_( capacity ) {}
bool Writer::is_closed() const
{
// Your code here.
return {};
}
void Writer::push( string data )
{
// Your code here.
(void)data;
return;
}
void Writer::close()
{
// Your code here.
}
uint64_t Writer::available_capacity() const
{
// Your code here.
return {};
}
uint64_t Writer::bytes_pushed() const
{
// Your code here.
return {};
}
bool Reader::is_finished() const
{
// Your code here.
return {};
}
uint64_t Reader::bytes_popped() const
{
// Your code here.
return {};
}
string_view Reader::peek() const
{
// Your code here.
return {};
}
void Reader::pop( uint64_t len )
{
// Your code here.
(void)len;
}
uint64_t Reader::bytes_buffered() const
{
// Your code here.
return {};
}