lispdoc - results for write |
(write object &key ((stream stream) *standard-output*) ((escape *print-escape*) *print-escape*) ((radix *print-radix*) *print-radix*) ((base *print-base*) *print-base*) ((circle *print-circle*) *print-circle*) ((pretty *print-pretty*) *print-pretty*) ((level *print-level*) *print-level*) ((length *print-length*) *print-length*) ((case *print-case*) *print-case*) ((array *print-array*) *print-array*) ((gensym *print-gensym*) *print-gensym*) ((readably *print-readably*) *print-readably*) ((right-margin *print-right-margin*) *print-right-margin*) ((miser-width *print-miser-width*) *print-miser-width*) ((lines *print-lines*) *print-lines*) ((pprint-dispatch *print-pprint-dispatch*) *print-pprint-dispatch*)) | Function: Output OBJECT to the specified stream, defaulting to *STANDARD-OUTPUT*.
|
Example:(defun write/1 (exp cont) (write (deref-exp exp) :pretty t) (funcall cont)) | Mentioned in: CLtL2 - 19.5. Defstruct Options CLtL2 - 22.1.6. What the Print Function Produces CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 27.2. Pretty Printing Control Variables CLtL2 - 27.3. Dynamic Control of the Arrangement of Output CLtL2 - 27.4. Format Directive Interface CLtL2 - 27.6. Pretty Printing Dispatch Tables CLtL2 - 28.2. Functions in the Programmer Interface HyperSpec - 22.3.4.3 Tilde W: Write HyperSpec - Function WRITE, PRIN1, PRINT, PPRINT, PRINC On Lisp - Scheme Continuations Successful Lisp - characters Successful Lisp - lesson 11 |
(write-char character &optional (stream *standard-output*)) | Undocumented
|
Example:(defun emit-newline (ip) (write-char #\Newline (out ip)) (setf (beginning-of-line-p ip) t)) | Mentioned in: CLtL2 - 21.1. Standard Streams CLtL2 - 22.2.1. Input from Character Streams CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 23.2. Opening and Closing Files CLtL2 - 23.3. Renaming, Deleting, and Other File Operations CLtL2 - 27.3. Dynamic Control of the Arrangement of Output CLtL2 - A.2.5. Collectors HyperSpec - Function WRITE-CHAR PCL - file output PCL - other kinds of io Successful Lisp - chapter19 Successful Lisp - characters |
(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 |
(write-line string &optional (stream *standard-output*) &key (start 0) end) | Undocumented
|
| Mentioned in: CLtL2 - 22.2.1. Input from Character Streams CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 27.3. Dynamic Control of the Arrangement of Output CLtL2 - A.2.5. Collectors HyperSpec - Function WRITE-STRING, WRITE-LINE PCL - anonymous functions PCL - file output PCL - other kinds of io Successful Lisp - chapter19 | |
(write-string string &optional (stream *standard-output*) &key (start 0) end) | Undocumented
|
| Mentioned in: CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 27.3. Dynamic Control of the Arrangement of Output CLtL2 - A.2.5. Collectors HyperSpec - Function WRITE-STRING, WRITE-LINE PCL - anonymous functions PCL - file output Successful Lisp - chapter19 | |
(write-sequence seq stream &key (start 0) (end nil)) | Function: Write the elements of SEQ bounded by START and END to STREAM.
|
| Mentioned in: HyperSpec - Function WRITE-SEQUENCE PCL - file output PCL - implementing shoutcast | |
(write-to-string object &key ((escape *print-escape*) *print-escape*) ((radix *print-radix*) *print-radix*) ((base *print-base*) *print-base*) ((circle *print-circle*) *print-circle*) ((pretty *print-pretty*) *print-pretty*) ((level *print-level*) *print-level*) ((length *print-length*) *print-length*) ((case *print-case*) *print-case*) ((array *print-array*) *print-array*) ((gensym *print-gensym*) *print-gensym*) ((readably *print-readably*) *print-readably*) ((right-margin *print-right-margin*) *print-right-margin*) ((miser-width *print-miser-width*) *print-miser-width*) ((lines *print-lines*) *print-lines*) ((pprint-dispatch *print-pprint-dispatch*) *print-pprint-dispatch*)) | Function: Return the printed representation of OBJECT as a string.
|
Example:(defun obj->base64 (obj) (base64-encode (with-safe-io-syntax (write-to-string obj)))) | Mentioned in: CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 28.2. Functions in the Programmer Interface HyperSpec - Function WRITE-TO-STRING, PRIN1-TO-STRING, PRINC-TO-STRING PCL - query parameter types |
(file-write-date pathspec) | Function: Return the write date of the file specified by PATHSPEC. An error of type FILE-ERROR is signaled if no such file exists, or if PATHSPEC is a wild pathname.
|
| Mentioned in: CLtL2 - 23.3. Renaming, Deleting, and Other File Operations HyperSpec - Function FILE-WRITE-DATE PCL - interacting with the file system | |
(trivial-gray-streams:stream-write-char stream character) | Function: Write CHARACTER to STREAM and return CHARACTER. Every subclass of FUNDAMENTAL-CHARACTER-OUTPUT-STREAM must have a method defined for this function.
|
(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.
|
(trivial-gray-streams:stream-write-string stream string &optional start end) | Function: This is used by WRITE-STRING. It writes the string to the stream, optionally delimited by start and end, which default to 0 and NIL. The string argument is returned. The default method provided by FUNDAMENTAL-CHARACTER-OUTPUT-STREAM uses repeated calls to STREAM-WRITE-CHAR.
|
(ql-network:write-octets buffer connection) | Undocumented
|
(hunchentoot:acceptor-write-timeout object) | Undocumented
|
(ql-util:write-line-to-file string file) | Undocumented
|
(alexandria.0.dev:write-string-into-file string pathname &key (if-exists error) if-does-not-exist external-format) | Function: Write STRING to PATHNAME. The EXTERNAL-FORMAT parameter will be passed directly to WITH-OPEN-FILE unless it's NIL, which means the system default.
|
(trivial-gray-streams:stream-write-sequence stream sequence start end &allow-other-keys) | Undocumented
|
(alexandria.0.dev:write-byte-vector-into-file bytes pathname &key (if-exists error) if-does-not-exist) | Function: Write BYTES to PATHNAME.
|
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |