bytes?
tests whether the provided forms are byte sequences
Usage:
(bytes? form+) (!bytes? form+)If all forms evaluate to byte sequences, this function returns #t (true). Otherwise it returns #f (false).
An Example
(bytes? (bytes 65 66) #b[1 2 3])