(type egg)
(signature "srfi-101 egg")
(timestamp 1612269487)
(sxml ((section 2 "Outdated egg!" (p "This is an egg for CHICKEN 4, the unsupported old release.  You're almost certainly looking for " (int-link "/eggref/5/srfi-101" "the CHICKEN 5 version of this egg") ", if it exists.") (p "If it does not exist, there may be equivalent functionality provided by another egg; have a look at the " (link "https://wiki.call-cc.org/chicken-projects/egg-index-5.html" "egg index") ". Otherwise, please consider porting this egg to the current version of CHICKEN.") (tags "egg")) (section 2 "srfi-101" (p "Chicken port of " (link "http://srfi.schemers.org/srfi-101/srfi-101.html" "SRFI 101") ".") (toc)) (section 2 "Documentation" (p "SRFI 101 describes a functional replacement representation for the Scheme list concept. The implementation here is based on the reference implementation.  Because the SRFI uses identifiers that are the same as standard R5RS identifiers bound in the " (tt "scheme") " module, two modules are provided.") (section 4 "Usage" (highlight scheme "(require-extension functional-lists)") (p "In this module, all the identifiers of SRFI 101 are exported with the " (tt "ra:") " prefix. It is suitable for applications that use both random-access pairs and standard Scheme pairs.") (highlight scheme "(require-extension srfi-101)") (p "In this module, all but one of the identifiers of SRFI 101 are exported without a prefix, which overrides the standard identifiers in the " (tt "scheme") " module.  The exception is " (tt "quote") ", which is exported as " (tt "ra:quote") ".  If the standard procedures are to be used, they must be imported with a prefix such as " (tt "r5:") ".  This module is suitable for applications that use random-access pairs only.  Note however that argument lists are still R5RS lists, which means that some or all of the standard procedures must be imported if procedures with variable numbers of arguments are to be included.")) (section 4 "Printing" (p "If either module is loaded, a record printer is provided which causes random-access pairs and lists to be output in the same way as R5RS pairs and lists.  No provision for input is made."))) (section 2 "Requirements" (p (int-link "vector-lib"))) (section 2 "Bugs and Limitations" (ul (li "Cannot rebind the " (tt "quote") " identifier for Chicken."))) (section 2 "Author" (p (int-link "/users/kon-lovett" "Kon Lovett"))) (section 2 "Version history" (dl (dt "0.0.2") (dd "Fix for ticket #630.") (dt "0.0.1") (dd "Initial Chicken 4 release."))) (section 2 "License" (p "See the source."))))
