Fork of https://github.com/mv2devnul/taglib

Anton Vodonosov 75c1942a7c Fix the testsuite for Allegro CL modern mode - instead of capitalized RETURN-FROM use return-from 12 лет назад
test 75c1942a7c Fix the testsuite for Allegro CL modern mode - instead of capitalized RETURN-FROM use return-from 12 лет назад
COPYING 10b5d21161 Added myself to COPYING and some metainfo to trivial-gray-streams.asd 13 лет назад
Makefile 7c02055836 Initial revision 20 лет назад
README 99f579bd35 Deprecate trivial-gray-stream-mixin and instead define and export full mirror of gray class hierarchy. Fixes the issue: http://lists.common-lisp.net/pipermail/trivial-gray-streams-devel/2013-March/000012.html 13 лет назад
build.xcvb 99f579bd35 Deprecate trivial-gray-stream-mixin and instead define and export full mirror of gray class hierarchy. Fixes the issue: http://lists.common-lisp.net/pipermail/trivial-gray-streams-devel/2013-March/000012.html 13 лет назад
package.lisp 99f579bd35 Deprecate trivial-gray-stream-mixin and instead define and export full mirror of gray class hierarchy. Fixes the issue: http://lists.common-lisp.net/pipermail/trivial-gray-streams-devel/2013-March/000012.html 13 лет назад
streams.lisp 01a32b4ec6 Typo in comment 12 лет назад
trivial-gray-streams-test.asd 97f90e1a5e test suite: separate package.lisp file 13 лет назад
trivial-gray-streams.asd 10b5d21161 Added myself to COPYING and some metainfo to trivial-gray-streams.asd 13 лет назад

README

trivial-gray-streams
====================

This system provides an extremely thin compatibility layer for gray
streams. It is nearly *too* trivial for a complete package, except that
I have copy&pasted this code into enough projects now that I decided to
factor it out once again now, and then *never* have to touch it again.


How to use it
=============

1. Use the package TRIVIAL-GRAY-STREAMS instead of whatever
implementation-specific package you would have to use otherwise to
get at gray stream symbols.
2. For STREAM-READ-SEQUENCE and STREAM-WRITE-SEQUENCE, notice that we
use two required arguments and allow additional keyword arguments.
So the lambda list when defining a method on either function should look
like this:
(stream sequence start end &key)


Extensions
==========

Generic function STREAM-READ-SEQUENCE (stream sequence start end &key)
Generic function STREAM-WRITE-SEQUENCE (stream sequence start end &key)

See above.

Generic function STREAM-FILE-POSITION (stream) => file position
Generic function (SETF STREAM-FILE-POSITION) (position-spec stream) => successp

Will only be called by ABCL, ACL, LispWorks, CCL, CLISP, SBCL and MOCL.