Sorry if the documentation is unclear. That is just the initial starting capacity of the stream. It will auto increase as needed.
As for is_input
flag, false
can be thought to mean sink
, that is the memory filter is being filled with data. true
then means it is a source (to be read from)
is_input:false; // sink
is_input:true; // source