Put a byte array into the stream
ubyte[4] data = [10, 11, 12, 13]; IMemStream stream; stream.put(data); for(int i=0; i<4; i++) assert(stream.getBytes[i] == data[i]);
See Implementation
Put a byte array into the stream