lispdoc - results for byte |
(byte size position) | Function: Return a byte specifier which may be used by other byte functions (e.g. LDB).
|
Example:(defun output-type-code (code stream) (declare (type ub32 code)) (write-byte (ldb (byte 8 0) code) stream)) | Mentioned in: CLtL2 - 12.8. Byte Manipulation Functions HyperSpec - 12.1.1.3.2 Byte Operations on Integers HyperSpec - Function BYTE, BYTE-SIZE, BYTE-POSITION PCL - binary format basics PCL - the current object stack Successful Lisp - chapter18 |
bytes | |
| Mentioned in: HyperSpec - 12.1.1.3 Viewing Integers as Bits and Bytes | |
(byte-size bytespec) | Function: Return the size part of the byte specifier bytespec.
|
| Mentioned in: CLtL2 - 12.8. Byte Manipulation Functions HyperSpec - Function BYTE, BYTE-SIZE, BYTE-POSITION Successful Lisp - chapter18 | |
(read-byte stream &optional (eof-error-p t) eof-value) | Undocumented
|
Example:(defun read-type-code (stream) (read-byte stream)) | Mentioned in: CLtL2 - 22.2.2. Input from Binary Streams CLtL2 - 23.2. Opening and Closing Files CLtL2 - 23.3. Renaming, Deleting, and Other File Operations HyperSpec - Function READ-BYTE PCL - binary format basics PCL - bulk reads PCL - implementing shoutcast PCL - other kinds of io PCL - reading binary data Successful Lisp - chapter19 |
(write-byte integer stream) | Undocumented
|
Example:(defun output-type-code (code stream) (declare (type ub32 code)) (write-byte (ldb (byte 8 0) code) stream)) | Mentioned in: CLtL2 - 22.3.2. Output to Binary Streams CLtL2 - 23.2. Opening and Closing Files CLtL2 - 23.3. Renaming, Deleting, and Other File Operations HyperSpec - Function WRITE-BYTE PCL - binary format basics PCL - file output PCL - implementing shoutcast PCL - strings in binary files Successful Lisp - chapter19 |
signed-byte | Undocumented
|
| Mentioned in: CLtL2 - 12.10 Implementation Parameters CLtL2 - 2.1.1. Integers CLtL2 - 23.2. Opening and Closing Files CLtL2 - 4.1 Type Specifier Symbols CLtL2 - 4.6. Type Specifiers That Abbreviate CLtL2 - 4.9. Determining the Type of an Object HyperSpec - Type SIGNED-BYTE Successful Lisp - chapter19 | |
unsigned-byte | Undocumented
|
Example:(defun read-id3 (file) (with-open-file (in file :element-type '(unsigned-byte 8)) (read-value 'id3-tag in))) | Mentioned in: CLtL2 - 23.2. Opening and Closing Files CLtL2 - 4.1 Type Specifier Symbols CLtL2 - 4.5. Type Specifiers That Specialize CLtL2 - 4.6. Type Specifiers That Abbreviate HyperSpec - Type UNSIGNED-BYTE Successful Lisp - chapter19 |
(byte-position bytespec) | Function: Return the position part of the byte specifier bytespec.
|
| Mentioned in: CLtL2 - 12.8. Byte Manipulation Functions HyperSpec - Function BYTE, BYTE-SIZE, BYTE-POSITION Successful Lisp - chapter18 | |
(trivial-gray-streams:stream-read-byte stream) | Function: Used by READ-BYTE; returns either an integer, or the symbol :EOF if the stream is at end-of-file.
|
(trivial-gray-streams:stream-write-byte stream integer) | Function: Implements WRITE-BYTE; writes the integer to the stream and returns the integer as the result.
|
(flexi-streams:peek-byte flexi-input-stream &optional peek-type (eof-error-p) eof-value) | Undocumented
|
(usocket:host-byte-order address) | Undocumented
|
(flexi-streams:unread-byte byte flexi-input-stream) | Undocumented
|
(ql-clisp:read-byte-sequence &rest args) | Undocumented
|
(cffi-sys:make-shareable-byte-vector size) | Function: Create a Lisp vector of SIZE bytes can passed to WITH-POINTER-TO-VECTOR-DATA.
|
babel-encodings:invalid-utf8-starter-byte | Type: Signalled when an invalid UTF-8 starter byte is found.
Structure: Signalled when an invalid UTF-8 starter byte is found. |
(alexandria.0.dev:read-file-into-byte-vector pathname) | Function: Read PATHNAME into a freshly allocated (unsigned-byte 8) vector.
|
(alexandria.0.dev:write-byte-vector-into-file bytes pathname &key (if-exists error) if-does-not-exist) | Function: Write BYTES to PATHNAME.
|
babel-encodings:invalid-utf8-continuation-byte | Type: Signalled when an invalid UTF-8 continuation byte is found.
Structure: Signalled when an invalid UTF-8 continuation byte is found. |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |