bool full(void)
Returns true
, if and only if the
hls::stream<>
object is full.
// Usage of bool full(void)
hls::stream<int> my_stream;
int src_var = 42;
bool stream_full;
stream_full = my_stream.full();
bool full(void)
Returns true
, if and only if the
hls::stream<>
object is full.
// Usage of bool full(void)
hls::stream<int> my_stream;
int src_var = 42;
bool stream_full;
stream_full = my_stream.full();