1 2 3 4 5 6 7 8 9 10 11 12
--- name: "bytevector/new" module: "bytevectors" section: "Construction" --- Create a bytevector of a given length, optionally filled with a value. ```sema (bytevector/new 4) ; => #u8(0 0 0 0) (bytevector/new 3 255) ; => #u8(255 255 255) ```