elisp @@ macro
[bpt/guile.git] / doc / ref / srfi-modules.texi
CommitLineData
2da09c3f
MV
1@c -*-texinfo-*-
2@c This is part of the GNU Guile Reference Manual.
ff4af3df
MW
3@c Copyright (C) 1996, 1997, 2000-2004, 2006, 2007-2014
4@c Free Software Foundation, Inc.
2da09c3f
MV
5@c See the file guile.texi for copying conditions.
6
a0e07ba4 7@node SRFI Support
3229f68b 8@section SRFI Support Modules
8742c48b 9@cindex SRFI
a0e07ba4
NJ
10
11SRFI is an acronym for Scheme Request For Implementation. The SRFI
12documents define a lot of syntactic and procedure extensions to standard
13Scheme as defined in R5RS.
14
15Guile has support for a number of SRFIs. This chapter gives an overview
16over the available SRFIs and some usage hints. For complete
17documentation, design rationales and further examples, we advise you to
18get the relevant SRFI documents from the SRFI home page
4b4b1e0b 19@url{http://srfi.schemers.org/}.
a0e07ba4
NJ
20
21@menu
22* About SRFI Usage:: What to know about Guile's SRFI support.
23* SRFI-0:: cond-expand
24* SRFI-1:: List library.
25* SRFI-2:: and-let*.
26* SRFI-4:: Homogeneous numeric vector datatypes.
27* SRFI-6:: Basic String Ports.
28* SRFI-8:: receive.
29* SRFI-9:: define-record-type.
30* SRFI-10:: Hash-Comma Reader Extension.
c010924a 31* SRFI-11:: let-values and let*-values.
a0e07ba4
NJ
32* SRFI-13:: String library.
33* SRFI-14:: Character-set library.
34* SRFI-16:: case-lambda
35* SRFI-17:: Generalized set!
e68f492a 36* SRFI-18:: Multithreading support
bfc9c8e0 37* SRFI-19:: Time/Date library.
8e9af854 38* SRFI-23:: Error reporting
1de8c1ae 39* SRFI-26:: Specializing parameters
56ec46a7 40* SRFI-27:: Sources of Random Bits
cffa9bd6 41* SRFI-28:: Basic format strings.
620c8965 42* SRFI-30:: Nested multi-line block comments
8638c417 43* SRFI-31:: A special form `rec' for recursive evaluation
f50ca8da
LC
44* SRFI-34:: Exception handling.
45* SRFI-35:: Conditions.
d4c38221 46* SRFI-37:: args-fold program argument processor
12708eeb 47* SRFI-38:: External Representation for Data With Shared Structure
eeadfda1 48* SRFI-39:: Parameter objects
50d08cd8 49* SRFI-41:: Streams.
fdc8fd46 50* SRFI-42:: Eager comprehensions
9060dc29 51* SRFI-43:: Vector Library.
f16a2007 52* SRFI-45:: Primitives for expressing iterative lazy algorithms
2d6a3144 53* SRFI-46:: Basic syntax-rules Extensions.
4ea9becb 54* SRFI-55:: Requiring Features.
8503beb8 55* SRFI-60:: Integers as bits.
43ed3b69 56* SRFI-61:: A more general `cond' clause
b306fae0 57* SRFI-62:: S-expression comments.
34e89877 58* SRFI-64:: A Scheme API for test suites.
8175a07e 59* SRFI-67:: Compare procedures
1317062f 60* SRFI-69:: Basic hash tables.
da81e75d 61* SRFI-87:: => in case clauses.
189681f5 62* SRFI-88:: Keyword objects.
922d417b 63* SRFI-98:: Accessing environment variables.
bf9eb54a 64* SRFI-105:: Curly-infix expressions.
3e2e4965 65* SRFI-111:: Boxes.
a0e07ba4
NJ
66@end menu
67
68
69@node About SRFI Usage
3229f68b 70@subsection About SRFI Usage
a0e07ba4
NJ
71
72@c FIXME::martin: Review me!
73
74SRFI support in Guile is currently implemented partly in the core
75library, and partly as add-on modules. That means that some SRFIs are
76automatically available when the interpreter is started, whereas the
77other SRFIs require you to use the appropriate support module
12991fed 78explicitly.
a0e07ba4
NJ
79
80There are several reasons for this inconsistency. First, the feature
81checking syntactic form @code{cond-expand} (@pxref{SRFI-0}) must be
82available immediately, because it must be there when the user wants to
83check for the Scheme implementation, that is, before she can know that
84it is safe to use @code{use-modules} to load SRFI support modules. The
85second reason is that some features defined in SRFIs had been
86implemented in Guile before the developers started to add SRFI
8edab37f 87implementations as modules (for example SRFI-13 (@pxref{SRFI-13})). In
a0e07ba4
NJ
88the future, it is possible that SRFIs in the core library might be
89factored out into separate modules, requiring explicit module loading
90when they are needed. So you should be prepared to have to use
8edab37f 91@code{use-modules} someday in the future to access SRFI-13 bindings. If
a0e07ba4 92you want, you can do that already. We have included the module
8edab37f 93@code{(srfi srfi-13)} in the distribution, which currently does nothing,
a0e07ba4
NJ
94but ensures that you can write future-safe code.
95
96Generally, support for a specific SRFI is made available by using
97modules named @code{(srfi srfi-@var{number})}, where @var{number} is the
98number of the SRFI needed. Another possibility is to use the command
99line option @code{--use-srfi}, which will load the necessary modules
100automatically (@pxref{Invoking Guile}).
101
102
103@node SRFI-0
3229f68b 104@subsection SRFI-0 - cond-expand
8742c48b 105@cindex SRFI-0
a0e07ba4 106
5eef0f61
KR
107This SRFI lets a portable Scheme program test for the presence of
108certain features, and adapt itself by using different blocks of code,
109or fail if the necessary features are not available. There's no
110module to load, this is in the Guile core.
a0e07ba4 111
5eef0f61
KR
112A program designed only for Guile will generally not need this
113mechanism, such a program can of course directly use the various
114documented parts of Guile.
a0e07ba4 115
5eef0f61
KR
116@deffn syntax cond-expand (feature body@dots{}) @dots{}
117Expand to the @var{body} of the first clause whose @var{feature}
118specification is satisfied. It is an error if no @var{feature} is
a0e07ba4
NJ
119satisfied.
120
5eef0f61
KR
121Features are symbols such as @code{srfi-1}, and a feature
122specification can use @code{and}, @code{or} and @code{not} forms to
123test combinations. The last clause can be an @code{else}, to be used
124if no other passes.
a0e07ba4 125
5eef0f61
KR
126For example, define a private version of @code{alist-cons} if SRFI-1
127is not available.
a0e07ba4 128
5eef0f61
KR
129@example
130(cond-expand (srfi-1
131 )
132 (else
133 (define (alist-cons key val alist)
134 (cons (cons key val) alist))))
135@end example
a0e07ba4 136
5eef0f61
KR
137Or demand a certain set of SRFIs (list operations, string ports,
138@code{receive} and string operations), failing if they're not
139available.
a0e07ba4 140
5eef0f61
KR
141@example
142(cond-expand ((and srfi-1 srfi-6 srfi-8 srfi-13)
143 ))
144@end example
145@end deffn
a0e07ba4 146
f38d22c5
KR
147@noindent
148The Guile core has the following features,
149
150@example
151guile
60c8ad9e 152guile-2 ;; starting from Guile 2.x
f38d22c5
KR
153r5rs
154srfi-0
155srfi-4
6dce942c 156srfi-6
f38d22c5
KR
157srfi-13
158srfi-14
61d50919 159srfi-16
edb6de0b 160srfi-23
61d50919 161srfi-30
edb6de0b 162srfi-39
2d6a3144 163srfi-46
edb6de0b
MW
164srfi-55
165srfi-61
b306fae0 166srfi-62
da81e75d 167srfi-87
edb6de0b 168srfi-105
f38d22c5
KR
169@end example
170
171Other SRFI feature symbols are defined once their code has been loaded
172with @code{use-modules}, since only then are their bindings available.
a0e07ba4 173
5eef0f61
KR
174The @samp{--use-srfi} command line option (@pxref{Invoking Guile}) is
175a good way to load SRFIs to satisfy @code{cond-expand} when running a
176portable program.
a0e07ba4 177
5eef0f61
KR
178Testing the @code{guile} feature allows a program to adapt itself to
179the Guile module system, but still run on other Scheme systems. For
180example the following demands SRFI-8 (@code{receive}), but also knows
181how to load it with the Guile mechanism.
a0e07ba4
NJ
182
183@example
5eef0f61
KR
184(cond-expand (srfi-8
185 )
186 (guile
187 (use-modules (srfi srfi-8))))
a0e07ba4
NJ
188@end example
189
60c8ad9e
LC
190@cindex @code{guile-2} SRFI-0 feature
191@cindex portability between 2.0 and older versions
192Likewise, testing the @code{guile-2} feature allows code to be portable
0c81a0c1
AW
193between Guile 2.@var{x} and previous versions of Guile. For instance, it
194makes it possible to write code that accounts for Guile 2.@var{x}'s compiler,
60c8ad9e
LC
195yet be correctly interpreted on 1.8 and earlier versions:
196
197@example
198(cond-expand (guile-2 (eval-when (compile)
199 ;; This must be evaluated at compile time.
200 (fluid-set! current-reader my-reader)))
201 (guile
202 ;; Earlier versions of Guile do not have a
203 ;; separate compilation phase.
204 (fluid-set! current-reader my-reader)))
205@end example
206
5eef0f61
KR
207It should be noted that @code{cond-expand} is separate from the
208@code{*features*} mechanism (@pxref{Feature Tracking}), feature
209symbols in one are unrelated to those in the other.
a0e07ba4
NJ
210
211
212@node SRFI-1
3229f68b 213@subsection SRFI-1 - List library
8742c48b 214@cindex SRFI-1
7c2e18cd 215@cindex list
a0e07ba4
NJ
216
217@c FIXME::martin: Review me!
218
219The list library defined in SRFI-1 contains a lot of useful list
220processing procedures for construction, examining, destructuring and
221manipulating lists and pairs.
222
223Since SRFI-1 also defines some procedures which are already contained
224in R5RS and thus are supported by the Guile core library, some list
225and pair procedures which appear in the SRFI-1 document may not appear
226in this section. So when looking for a particular list/pair
227processing procedure, you should also have a look at the sections
228@ref{Lists} and @ref{Pairs}.
229
230@menu
231* SRFI-1 Constructors:: Constructing new lists.
232* SRFI-1 Predicates:: Testing list for specific properties.
233* SRFI-1 Selectors:: Selecting elements from lists.
234* SRFI-1 Length Append etc:: Length calculation and list appending.
235* SRFI-1 Fold and Map:: Higher-order list processing.
236* SRFI-1 Filtering and Partitioning:: Filter lists based on predicates.
85a9b4ed 237* SRFI-1 Searching:: Search for elements.
a0e07ba4
NJ
238* SRFI-1 Deleting:: Delete elements from lists.
239* SRFI-1 Association Lists:: Handle association lists.
240* SRFI-1 Set Operations:: Use lists for representing sets.
241@end menu
242
243@node SRFI-1 Constructors
3229f68b 244@subsubsection Constructors
7c2e18cd 245@cindex list constructor
a0e07ba4
NJ
246
247@c FIXME::martin: Review me!
248
249New lists can be constructed by calling one of the following
250procedures.
251
8f85c0c6 252@deffn {Scheme Procedure} xcons d a
a0e07ba4
NJ
253Like @code{cons}, but with interchanged arguments. Useful mostly when
254passed to higher-order procedures.
255@end deffn
256
8f85c0c6 257@deffn {Scheme Procedure} list-tabulate n init-proc
a0e07ba4
NJ
258Return an @var{n}-element list, where each list element is produced by
259applying the procedure @var{init-proc} to the corresponding list
260index. The order in which @var{init-proc} is applied to the indices
261is not specified.
262@end deffn
263
57066448
KR
264@deffn {Scheme Procedure} list-copy lst
265Return a new list containing the elements of the list @var{lst}.
266
267This function differs from the core @code{list-copy} (@pxref{List
268Constructors}) in accepting improper lists too. And if @var{lst} is
269not a pair at all then it's treated as the final tail of an improper
270list and simply returned.
271@end deffn
272
8f85c0c6 273@deffn {Scheme Procedure} circular-list elt1 elt2 @dots{}
a0e07ba4
NJ
274Return a circular list containing the given arguments @var{elt1}
275@var{elt2} @dots{}.
276@end deffn
277
8f85c0c6 278@deffn {Scheme Procedure} iota count [start step]
256853db
KR
279Return a list containing @var{count} numbers, starting from
280@var{start} and adding @var{step} each time. The default @var{start}
281is 0, the default @var{step} is 1. For example,
a0e07ba4 282
256853db
KR
283@example
284(iota 6) @result{} (0 1 2 3 4 5)
285(iota 4 2.5 -2) @result{} (2.5 0.5 -1.5 -3.5)
286@end example
a0e07ba4 287
256853db
KR
288This function takes its name from the corresponding primitive in the
289APL language.
a0e07ba4
NJ
290@end deffn
291
292
293@node SRFI-1 Predicates
3229f68b 294@subsubsection Predicates
7c2e18cd 295@cindex list predicate
a0e07ba4
NJ
296
297@c FIXME::martin: Review me!
298
299The procedures in this section test specific properties of lists.
300
8f85c0c6 301@deffn {Scheme Procedure} proper-list? obj
f18f87aa
KR
302Return @code{#t} if @var{obj} is a proper list, or @code{#f}
303otherwise. This is the same as the core @code{list?} (@pxref{List
304Predicates}).
305
306A proper list is a list which ends with the empty list @code{()} in
307the usual way. The empty list @code{()} itself is a proper list too.
308
309@example
310(proper-list? '(1 2 3)) @result{} #t
311(proper-list? '()) @result{} #t
312@end example
a0e07ba4
NJ
313@end deffn
314
8f85c0c6 315@deffn {Scheme Procedure} circular-list? obj
f18f87aa
KR
316Return @code{#t} if @var{obj} is a circular list, or @code{#f}
317otherwise.
318
319A circular list is a list where at some point the @code{cdr} refers
320back to a previous pair in the list (either the start or some later
321point), so that following the @code{cdr}s takes you around in a
322circle, with no end.
323
324@example
325(define x (list 1 2 3 4))
326(set-cdr! (last-pair x) (cddr x))
327x @result{} (1 2 3 4 3 4 3 4 ...)
328(circular-list? x) @result{} #t
329@end example
a0e07ba4
NJ
330@end deffn
331
8f85c0c6 332@deffn {Scheme Procedure} dotted-list? obj
f18f87aa
KR
333Return @code{#t} if @var{obj} is a dotted list, or @code{#f}
334otherwise.
335
336A dotted list is a list where the @code{cdr} of the last pair is not
337the empty list @code{()}. Any non-pair @var{obj} is also considered a
338dotted list, with length zero.
339
340@example
341(dotted-list? '(1 2 . 3)) @result{} #t
342(dotted-list? 99) @result{} #t
343@end example
a0e07ba4
NJ
344@end deffn
345
f18f87aa
KR
346It will be noted that any Scheme object passes exactly one of the
347above three tests @code{proper-list?}, @code{circular-list?} and
348@code{dotted-list?}. Non-lists are @code{dotted-list?}, finite lists
349are either @code{proper-list?} or @code{dotted-list?}, and infinite
350lists are @code{circular-list?}.
351
352@sp 1
8f85c0c6 353@deffn {Scheme Procedure} null-list? lst
a0e07ba4
NJ
354Return @code{#t} if @var{lst} is the empty list @code{()}, @code{#f}
355otherwise. If something else than a proper or circular list is passed
85a9b4ed 356as @var{lst}, an error is signalled. This procedure is recommended
a0e07ba4
NJ
357for checking for the end of a list in contexts where dotted lists are
358not allowed.
359@end deffn
360
8f85c0c6 361@deffn {Scheme Procedure} not-pair? obj
a0e07ba4
NJ
362Return @code{#t} is @var{obj} is not a pair, @code{#f} otherwise.
363This is shorthand notation @code{(not (pair? @var{obj}))} and is
364supposed to be used for end-of-list checking in contexts where dotted
365lists are allowed.
366@end deffn
367
8f85c0c6 368@deffn {Scheme Procedure} list= elt= list1 @dots{}
a0e07ba4
NJ
369Return @code{#t} if all argument lists are equal, @code{#f} otherwise.
370List equality is determined by testing whether all lists have the same
371length and the corresponding elements are equal in the sense of the
372equality predicate @var{elt=}. If no or only one list is given,
373@code{#t} is returned.
374@end deffn
375
376
377@node SRFI-1 Selectors
3229f68b 378@subsubsection Selectors
7c2e18cd 379@cindex list selector
a0e07ba4
NJ
380
381@c FIXME::martin: Review me!
382
8f85c0c6
NJ
383@deffn {Scheme Procedure} first pair
384@deffnx {Scheme Procedure} second pair
385@deffnx {Scheme Procedure} third pair
386@deffnx {Scheme Procedure} fourth pair
387@deffnx {Scheme Procedure} fifth pair
388@deffnx {Scheme Procedure} sixth pair
389@deffnx {Scheme Procedure} seventh pair
390@deffnx {Scheme Procedure} eighth pair
391@deffnx {Scheme Procedure} ninth pair
392@deffnx {Scheme Procedure} tenth pair
a0e07ba4
NJ
393These are synonyms for @code{car}, @code{cadr}, @code{caddr}, @dots{}.
394@end deffn
395
8f85c0c6 396@deffn {Scheme Procedure} car+cdr pair
a0e07ba4
NJ
397Return two values, the @sc{car} and the @sc{cdr} of @var{pair}.
398@end deffn
399
8f85c0c6
NJ
400@deffn {Scheme Procedure} take lst i
401@deffnx {Scheme Procedure} take! lst i
a0e07ba4
NJ
402Return a list containing the first @var{i} elements of @var{lst}.
403
404@code{take!} may modify the structure of the argument list @var{lst}
405in order to produce the result.
406@end deffn
407
8f85c0c6 408@deffn {Scheme Procedure} drop lst i
a0e07ba4
NJ
409Return a list containing all but the first @var{i} elements of
410@var{lst}.
411@end deffn
412
8f85c0c6 413@deffn {Scheme Procedure} take-right lst i
ecb87335 414Return a list containing the @var{i} last elements of @var{lst}.
64bf8517 415The return shares a common tail with @var{lst}.
a0e07ba4
NJ
416@end deffn
417
8f85c0c6
NJ
418@deffn {Scheme Procedure} drop-right lst i
419@deffnx {Scheme Procedure} drop-right! lst i
ecb87335 420Return a list containing all but the @var{i} last elements of
a0e07ba4
NJ
421@var{lst}.
422
64bf8517
KR
423@code{drop-right} always returns a new list, even when @var{i} is
424zero. @code{drop-right!} may modify the structure of the argument
425list @var{lst} in order to produce the result.
a0e07ba4
NJ
426@end deffn
427
8f85c0c6
NJ
428@deffn {Scheme Procedure} split-at lst i
429@deffnx {Scheme Procedure} split-at! lst i
a0e07ba4
NJ
430Return two values, a list containing the first @var{i} elements of the
431list @var{lst} and a list containing the remaining elements.
432
433@code{split-at!} may modify the structure of the argument list
434@var{lst} in order to produce the result.
435@end deffn
436
8f85c0c6 437@deffn {Scheme Procedure} last lst
a0e07ba4
NJ
438Return the last element of the non-empty, finite list @var{lst}.
439@end deffn
440
441
442@node SRFI-1 Length Append etc
3229f68b 443@subsubsection Length, Append, Concatenate, etc.
a0e07ba4
NJ
444
445@c FIXME::martin: Review me!
446
8f85c0c6 447@deffn {Scheme Procedure} length+ lst
a0e07ba4
NJ
448Return the length of the argument list @var{lst}. When @var{lst} is a
449circular list, @code{#f} is returned.
450@end deffn
451
8f85c0c6
NJ
452@deffn {Scheme Procedure} concatenate list-of-lists
453@deffnx {Scheme Procedure} concatenate! list-of-lists
a0e07ba4
NJ
454Construct a list by appending all lists in @var{list-of-lists}.
455
456@code{concatenate!} may modify the structure of the given lists in
457order to produce the result.
a3e856f2
KR
458
459@code{concatenate} is the same as @code{(apply append
460@var{list-of-lists})}. It exists because some Scheme implementations
461have a limit on the number of arguments a function takes, which the
462@code{apply} might exceed. In Guile there is no such limit.
a0e07ba4
NJ
463@end deffn
464
8f85c0c6
NJ
465@deffn {Scheme Procedure} append-reverse rev-head tail
466@deffnx {Scheme Procedure} append-reverse! rev-head tail
23f2b9a3
KR
467Reverse @var{rev-head}, append @var{tail} to it, and return the
468result. This is equivalent to @code{(append (reverse @var{rev-head})
469@var{tail})}, but its implementation is more efficient.
470
471@example
472(append-reverse '(1 2 3) '(4 5 6)) @result{} (3 2 1 4 5 6)
473@end example
a0e07ba4
NJ
474
475@code{append-reverse!} may modify @var{rev-head} in order to produce
476the result.
477@end deffn
478
8f85c0c6 479@deffn {Scheme Procedure} zip lst1 lst2 @dots{}
a0e07ba4
NJ
480Return a list as long as the shortest of the argument lists, where
481each element is a list. The first list contains the first elements of
482the argument lists, the second list contains the second elements, and
483so on.
484@end deffn
485
8f85c0c6
NJ
486@deffn {Scheme Procedure} unzip1 lst
487@deffnx {Scheme Procedure} unzip2 lst
488@deffnx {Scheme Procedure} unzip3 lst
489@deffnx {Scheme Procedure} unzip4 lst
490@deffnx {Scheme Procedure} unzip5 lst
a0e07ba4
NJ
491@code{unzip1} takes a list of lists, and returns a list containing the
492first elements of each list, @code{unzip2} returns two lists, the
493first containing the first elements of each lists and the second
494containing the second elements of each lists, and so on.
495@end deffn
496
df0a1002 497@deffn {Scheme Procedure} count pred lst1 lst2 @dots{}
e508c863
KR
498Return a count of the number of times @var{pred} returns true when
499called on elements from the given lists.
500
501@var{pred} is called with @var{N} parameters @code{(@var{pred}
df0a1002
BT
502@var{elem1} @dots{} @var{elemN} )}, each element being from the
503corresponding list. The first call is with the first element of each
504list, the second with the second element from each, and so on.
e508c863
KR
505
506Counting stops when the end of the shortest list is reached. At least
507one list must be non-circular.
508@end deffn
509
a0e07ba4
NJ
510
511@node SRFI-1 Fold and Map
3229f68b 512@subsubsection Fold, Unfold & Map
7c2e18cd
KR
513@cindex list fold
514@cindex list map
a0e07ba4
NJ
515
516@c FIXME::martin: Review me!
517
df0a1002
BT
518@deffn {Scheme Procedure} fold proc init lst1 lst2 @dots{}
519@deffnx {Scheme Procedure} fold-right proc init lst1 lst2 @dots{}
520Apply @var{proc} to the elements of @var{lst1} @var{lst2} @dots{} to
1e181a08 521build a result, and return that result.
a0e07ba4 522
df0a1002
BT
523Each @var{proc} call is @code{(@var{proc} @var{elem1} @var{elem2}
524@dots{} @var{previous})}, where @var{elem1} is from @var{lst1},
525@var{elem2} is from @var{lst2}, and so on. @var{previous} is the return
1e181a08
KR
526from the previous call to @var{proc}, or the given @var{init} for the
527first call. If any list is empty, just @var{init} is returned.
a0e07ba4 528
1e181a08
KR
529@code{fold} works through the list elements from first to last. The
530following shows a list reversal and the calls it makes,
a0e07ba4 531
1e181a08
KR
532@example
533(fold cons '() '(1 2 3))
a0e07ba4 534
1e181a08
KR
535(cons 1 '())
536(cons 2 '(1))
537(cons 3 '(2 1)
538@result{} (3 2 1)
539@end example
a0e07ba4 540
1e181a08
KR
541@code{fold-right} works through the list elements from last to first,
542ie.@: from the right. So for example the following finds the longest
543string, and the last among equal longest,
544
545@example
546(fold-right (lambda (str prev)
547 (if (> (string-length str) (string-length prev))
548 str
549 prev))
550 ""
551 '("x" "abc" "xyz" "jk"))
552@result{} "xyz"
553@end example
a0e07ba4 554
df0a1002 555If @var{lst1} @var{lst2} @dots{} have different lengths, @code{fold}
1e181a08 556stops when the end of the shortest is reached; @code{fold-right}
df0a1002
BT
557commences at the last element of the shortest. Ie.@: elements past the
558length of the shortest are ignored in the other @var{lst}s. At least
559one @var{lst} must be non-circular.
1e181a08
KR
560
561@code{fold} should be preferred over @code{fold-right} if the order of
562processing doesn't matter, or can be arranged either way, since
563@code{fold} is a little more efficient.
564
565The way @code{fold} builds a result from iterating is quite general,
566it can do more than other iterations like say @code{map} or
567@code{filter}. The following for example removes adjacent duplicate
568elements from a list,
569
570@example
571(define (delete-adjacent-duplicates lst)
572 (fold-right (lambda (elem ret)
573 (if (equal? elem (first ret))
574 ret
575 (cons elem ret)))
576 (list (last lst))
577 lst))
578(delete-adjacent-duplicates '(1 2 3 3 4 4 4 5))
579@result{} (1 2 3 4 5)
580@end example
581
582Clearly the same sort of thing can be done with a @code{for-each} and
5f708db6
KR
583a variable in which to build the result, but a self-contained
584@var{proc} can be re-used in multiple contexts, where a
585@code{for-each} would have to be written out each time.
a0e07ba4
NJ
586@end deffn
587
df0a1002
BT
588@deffn {Scheme Procedure} pair-fold proc init lst1 lst2 @dots{}
589@deffnx {Scheme Procedure} pair-fold-right proc init lst1 lst2 @dots{}
1e181a08
KR
590The same as @code{fold} and @code{fold-right}, but apply @var{proc} to
591the pairs of the lists instead of the list elements.
a0e07ba4
NJ
592@end deffn
593
5f708db6
KR
594@deffn {Scheme Procedure} reduce proc default lst
595@deffnx {Scheme Procedure} reduce-right proc default lst
596@code{reduce} is a variant of @code{fold}, where the first call to
597@var{proc} is on two elements from @var{lst}, rather than one element
598and a given initial value.
1e181a08 599
5f708db6
KR
600If @var{lst} is empty, @code{reduce} returns @var{default} (this is
601the only use for @var{default}). If @var{lst} has just one element
602then that's the return value. Otherwise @var{proc} is called on the
603elements of @var{lst}.
1e181a08 604
5f708db6
KR
605Each @var{proc} call is @code{(@var{proc} @var{elem} @var{previous})},
606where @var{elem} is from @var{lst} (the second and subsequent elements
607of @var{lst}), and @var{previous} is the return from the previous call
608to @var{proc}. The first element of @var{lst} is the @var{previous}
609for the first call to @var{proc}.
1e181a08 610
5f708db6
KR
611For example, the following adds a list of numbers, the calls made to
612@code{+} are shown. (Of course @code{+} accepts multiple arguments
613and can add a list directly, with @code{apply}.)
1e181a08
KR
614
615@example
5f708db6
KR
616(reduce + 0 '(5 6 7)) @result{} 18
617
618(+ 6 5) @result{} 11
619(+ 7 11) @result{} 18
1e181a08
KR
620@end example
621
5f708db6
KR
622@code{reduce} can be used instead of @code{fold} where the @var{init}
623value is an ``identity'', meaning a value which under @var{proc}
624doesn't change the result, in this case 0 is an identity since
625@code{(+ 5 0)} is just 5. @code{reduce} avoids that unnecessary call.
1e181a08
KR
626
627@code{reduce-right} is a similar variation on @code{fold-right},
5f708db6
KR
628working from the end (ie.@: the right) of @var{lst}. The last element
629of @var{lst} is the @var{previous} for the first call to @var{proc},
630and the @var{elem} values go from the second last.
1e181a08
KR
631
632@code{reduce} should be preferred over @code{reduce-right} if the
633order of processing doesn't matter, or can be arranged either way,
634since @code{reduce} is a little more efficient.
a0e07ba4
NJ
635@end deffn
636
8f85c0c6 637@deffn {Scheme Procedure} unfold p f g seed [tail-gen]
a0e07ba4
NJ
638@code{unfold} is defined as follows:
639
640@lisp
641(unfold p f g seed) =
642 (if (p seed) (tail-gen seed)
643 (cons (f seed)
644 (unfold p f g (g seed))))
645@end lisp
646
647@table @var
648@item p
649Determines when to stop unfolding.
650
651@item f
652Maps each seed value to the corresponding list element.
653
654@item g
ecb87335 655Maps each seed value to next seed value.
a0e07ba4
NJ
656
657@item seed
658The state value for the unfold.
659
660@item tail-gen
661Creates the tail of the list; defaults to @code{(lambda (x) '())}.
662@end table
663
664@var{g} produces a series of seed values, which are mapped to list
665elements by @var{f}. These elements are put into a list in
666left-to-right order, and @var{p} tells when to stop unfolding.
667@end deffn
668
8f85c0c6 669@deffn {Scheme Procedure} unfold-right p f g seed [tail]
a0e07ba4
NJ
670Construct a list with the following loop.
671
672@lisp
673(let lp ((seed seed) (lis tail))
674 (if (p seed) lis
675 (lp (g seed)
676 (cons (f seed) lis))))
677@end lisp
678
679@table @var
680@item p
681Determines when to stop unfolding.
682
683@item f
684Maps each seed value to the corresponding list element.
685
686@item g
ecb87335 687Maps each seed value to next seed value.
a0e07ba4
NJ
688
689@item seed
690The state value for the unfold.
691
9cdf0ac6
IP
692@item tail
693The tail of the list; defaults to @code{'()}.
a0e07ba4
NJ
694@end table
695
696@end deffn
697
8f85c0c6 698@deffn {Scheme Procedure} map f lst1 lst2 @dots{}
a0e07ba4
NJ
699Map the procedure over the list(s) @var{lst1}, @var{lst2}, @dots{} and
700return a list containing the results of the procedure applications.
701This procedure is extended with respect to R5RS, because the argument
702lists may have different lengths. The result list will have the same
703length as the shortest argument lists. The order in which @var{f}
704will be applied to the list element(s) is not specified.
705@end deffn
706
8f85c0c6 707@deffn {Scheme Procedure} for-each f lst1 lst2 @dots{}
a0e07ba4
NJ
708Apply the procedure @var{f} to each pair of corresponding elements of
709the list(s) @var{lst1}, @var{lst2}, @dots{}. The return value is not
710specified. This procedure is extended with respect to R5RS, because
711the argument lists may have different lengths. The shortest argument
712list determines the number of times @var{f} is called. @var{f} will
85a9b4ed 713be applied to the list elements in left-to-right order.
a0e07ba4
NJ
714
715@end deffn
716
8f85c0c6
NJ
717@deffn {Scheme Procedure} append-map f lst1 lst2 @dots{}
718@deffnx {Scheme Procedure} append-map! f lst1 lst2 @dots{}
12991fed 719Equivalent to
a0e07ba4
NJ
720
721@lisp
12991fed 722(apply append (map f clist1 clist2 ...))
a0e07ba4
NJ
723@end lisp
724
12991fed 725and
a0e07ba4
NJ
726
727@lisp
12991fed 728(apply append! (map f clist1 clist2 ...))
a0e07ba4
NJ
729@end lisp
730
731Map @var{f} over the elements of the lists, just as in the @code{map}
732function. However, the results of the applications are appended
733together to make the final result. @code{append-map} uses
734@code{append} to append the results together; @code{append-map!} uses
735@code{append!}.
736
737The dynamic order in which the various applications of @var{f} are
738made is not specified.
739@end deffn
740
8f85c0c6 741@deffn {Scheme Procedure} map! f lst1 lst2 @dots{}
a0e07ba4
NJ
742Linear-update variant of @code{map} -- @code{map!} is allowed, but not
743required, to alter the cons cells of @var{lst1} to construct the
744result list.
745
746The dynamic order in which the various applications of @var{f} are
747made is not specified. In the n-ary case, @var{lst2}, @var{lst3},
748@dots{} must have at least as many elements as @var{lst1}.
749@end deffn
750
8f85c0c6 751@deffn {Scheme Procedure} pair-for-each f lst1 lst2 @dots{}
a0e07ba4
NJ
752Like @code{for-each}, but applies the procedure @var{f} to the pairs
753from which the argument lists are constructed, instead of the list
754elements. The return value is not specified.
755@end deffn
756
8f85c0c6 757@deffn {Scheme Procedure} filter-map f lst1 lst2 @dots{}
a0e07ba4
NJ
758Like @code{map}, but only results from the applications of @var{f}
759which are true are saved in the result list.
760@end deffn
761
762
763@node SRFI-1 Filtering and Partitioning
3229f68b 764@subsubsection Filtering and Partitioning
7c2e18cd
KR
765@cindex list filter
766@cindex list partition
a0e07ba4
NJ
767
768@c FIXME::martin: Review me!
769
770Filtering means to collect all elements from a list which satisfy a
771specific condition. Partitioning a list means to make two groups of
772list elements, one which contains the elements satisfying a condition,
773and the other for the elements which don't.
774
60e25dc4
KR
775The @code{filter} and @code{filter!} functions are implemented in the
776Guile core, @xref{List Modification}.
a0e07ba4 777
8f85c0c6
NJ
778@deffn {Scheme Procedure} partition pred lst
779@deffnx {Scheme Procedure} partition! pred lst
193239f1
KR
780Split @var{lst} into those elements which do and don't satisfy the
781predicate @var{pred}.
a0e07ba4 782
193239f1
KR
783The return is two values (@pxref{Multiple Values}), the first being a
784list of all elements from @var{lst} which satisfy @var{pred}, the
785second a list of those which do not.
786
787The elements in the result lists are in the same order as in @var{lst}
788but the order in which the calls @code{(@var{pred} elem)} are made on
789the list elements is unspecified.
790
791@code{partition} does not change @var{lst}, but one of the returned
792lists may share a tail with it. @code{partition!} may modify
793@var{lst} to construct its return.
a0e07ba4
NJ
794@end deffn
795
8f85c0c6
NJ
796@deffn {Scheme Procedure} remove pred lst
797@deffnx {Scheme Procedure} remove! pred lst
a0e07ba4
NJ
798Return a list containing all elements from @var{lst} which do not
799satisfy the predicate @var{pred}. The elements in the result list
800have the same order as in @var{lst}. The order in which @var{pred} is
801applied to the list elements is not specified.
802
803@code{remove!} is allowed, but not required to modify the structure of
804the input list.
805@end deffn
806
807
808@node SRFI-1 Searching
3229f68b 809@subsubsection Searching
7c2e18cd 810@cindex list search
a0e07ba4
NJ
811
812@c FIXME::martin: Review me!
813
814The procedures for searching elements in lists either accept a
815predicate or a comparison object for determining which elements are to
816be searched.
817
8f85c0c6 818@deffn {Scheme Procedure} find pred lst
a0e07ba4
NJ
819Return the first element of @var{lst} which satisfies the predicate
820@var{pred} and @code{#f} if no such element is found.
821@end deffn
822
8f85c0c6 823@deffn {Scheme Procedure} find-tail pred lst
a0e07ba4
NJ
824Return the first pair of @var{lst} whose @sc{car} satisfies the
825predicate @var{pred} and @code{#f} if no such element is found.
826@end deffn
827
8f85c0c6
NJ
828@deffn {Scheme Procedure} take-while pred lst
829@deffnx {Scheme Procedure} take-while! pred lst
a0e07ba4
NJ
830Return the longest initial prefix of @var{lst} whose elements all
831satisfy the predicate @var{pred}.
832
833@code{take-while!} is allowed, but not required to modify the input
834list while producing the result.
835@end deffn
836
8f85c0c6 837@deffn {Scheme Procedure} drop-while pred lst
a0e07ba4
NJ
838Drop the longest initial prefix of @var{lst} whose elements all
839satisfy the predicate @var{pred}.
840@end deffn
841
8f85c0c6
NJ
842@deffn {Scheme Procedure} span pred lst
843@deffnx {Scheme Procedure} span! pred lst
844@deffnx {Scheme Procedure} break pred lst
845@deffnx {Scheme Procedure} break! pred lst
a0e07ba4
NJ
846@code{span} splits the list @var{lst} into the longest initial prefix
847whose elements all satisfy the predicate @var{pred}, and the remaining
848tail. @code{break} inverts the sense of the predicate.
849
850@code{span!} and @code{break!} are allowed, but not required to modify
851the structure of the input list @var{lst} in order to produce the
852result.
3e73b6f9
KR
853
854Note that the name @code{break} conflicts with the @code{break}
855binding established by @code{while} (@pxref{while do}). Applications
856wanting to use @code{break} from within a @code{while} loop will need
857to make a new define under a different name.
a0e07ba4
NJ
858@end deffn
859
df0a1002
BT
860@deffn {Scheme Procedure} any pred lst1 lst2 @dots{}
861Test whether any set of elements from @var{lst1} @var{lst2} @dots{}
862satisfies @var{pred}. If so, the return value is the return value from
863the successful @var{pred} call, or if not, the return value is
864@code{#f}.
62705beb 865
df0a1002
BT
866If there are n list arguments, then @var{pred} must be a predicate
867taking n arguments. Each @var{pred} call is @code{(@var{pred}
868@var{elem1} @var{elem2} @dots{} )} taking an element from each
869@var{lst}. The calls are made successively for the first, second, etc.
870elements of the lists, stopping when @var{pred} returns non-@code{#f},
871or when the end of the shortest list is reached.
62705beb 872
df0a1002 873The @var{pred} call on the last set of elements (i.e., when the end of
62705beb
KR
874the shortest list has been reached), if that point is reached, is a
875tail call.
876@end deffn
877
df0a1002
BT
878@deffn {Scheme Procedure} every pred lst1 lst2 @dots{}
879Test whether every set of elements from @var{lst1} @var{lst2} @dots{}
880satisfies @var{pred}. If so, the return value is the return from the
881final @var{pred} call, or if not, the return value is @code{#f}.
62705beb 882
df0a1002
BT
883If there are n list arguments, then @var{pred} must be a predicate
884taking n arguments. Each @var{pred} call is @code{(@var{pred}
885@var{elem1} @var{elem2 @dots{}})} taking an element from each
886@var{lst}. The calls are made successively for the first, second, etc.
887elements of the lists, stopping if @var{pred} returns @code{#f}, or when
888the end of any of the lists is reached.
62705beb 889
df0a1002 890The @var{pred} call on the last set of elements (i.e., when the end of
62705beb
KR
891the shortest list has been reached) is a tail call.
892
df0a1002
BT
893If one of @var{lst1} @var{lst2} @dots{}is empty then no calls to
894@var{pred} are made, and the return value is @code{#t}.
a0e07ba4
NJ
895@end deffn
896
df0a1002 897@deffn {Scheme Procedure} list-index pred lst1 lst2 @dots{}
d1736abf 898Return the index of the first set of elements, one from each of
df0a1002 899@var{lst1} @var{lst2} @dots{}, which satisfies @var{pred}.
d1736abf 900
df0a1002 901@var{pred} is called as @code{(@var{elem1} @var{elem2 @dots{}})}.
d1736abf
KR
902Searching stops when the end of the shortest @var{lst} is reached.
903The return index starts from 0 for the first set of elements. If no
df0a1002 904set of elements pass, then the return value is @code{#f}.
0166e7f2
KR
905
906@example
907(list-index odd? '(2 4 6 9)) @result{} 3
908(list-index = '(1 2 3) '(3 1 2)) @result{} #f
909@end example
a0e07ba4
NJ
910@end deffn
911
8f85c0c6 912@deffn {Scheme Procedure} member x lst [=]
a0e07ba4 913Return the first sublist of @var{lst} whose @sc{car} is equal to
ca04a5ae 914@var{x}. If @var{x} does not appear in @var{lst}, return @code{#f}.
ea6ea01b 915
ca04a5ae
KR
916Equality is determined by @code{equal?}, or by the equality predicate
917@var{=} if given. @var{=} is called @code{(= @var{x} elem)},
918ie.@: with the given @var{x} first, so for example to find the first
919element greater than 5,
920
921@example
922(member 5 '(3 5 1 7 2 9) <) @result{} (7 2 9)
923@end example
924
925This version of @code{member} extends the core @code{member}
926(@pxref{List Searching}) by accepting an equality predicate.
a0e07ba4
NJ
927@end deffn
928
929
930@node SRFI-1 Deleting
3229f68b 931@subsubsection Deleting
7c2e18cd 932@cindex list delete
a0e07ba4 933
8f85c0c6
NJ
934@deffn {Scheme Procedure} delete x lst [=]
935@deffnx {Scheme Procedure} delete! x lst [=]
b6b9376a
KR
936Return a list containing the elements of @var{lst} but with those
937equal to @var{x} deleted. The returned elements will be in the same
938order as they were in @var{lst}.
939
940Equality is determined by the @var{=} predicate, or @code{equal?} if
941not given. An equality call is made just once for each element, but
942the order in which the calls are made on the elements is unspecified.
a0e07ba4 943
243bdb63 944The equality calls are always @code{(= x elem)}, ie.@: the given @var{x}
b6b9376a
KR
945is first. This means for instance elements greater than 5 can be
946deleted with @code{(delete 5 lst <)}.
947
948@code{delete} does not modify @var{lst}, but the return might share a
949common tail with @var{lst}. @code{delete!} may modify the structure
950of @var{lst} to construct its return.
ea6ea01b 951
4eb21177
KR
952These functions extend the core @code{delete} and @code{delete!}
953(@pxref{List Modification}) in accepting an equality predicate. See
954also @code{lset-difference} (@pxref{SRFI-1 Set Operations}) for
955deleting multiple elements from a list.
a0e07ba4
NJ
956@end deffn
957
8f85c0c6
NJ
958@deffn {Scheme Procedure} delete-duplicates lst [=]
959@deffnx {Scheme Procedure} delete-duplicates! lst [=]
b6b9376a
KR
960Return a list containing the elements of @var{lst} but without
961duplicates.
962
963When elements are equal, only the first in @var{lst} is retained.
964Equal elements can be anywhere in @var{lst}, they don't have to be
965adjacent. The returned list will have the retained elements in the
966same order as they were in @var{lst}.
967
968Equality is determined by the @var{=} predicate, or @code{equal?} if
969not given. Calls @code{(= x y)} are made with element @var{x} being
970before @var{y} in @var{lst}. A call is made at most once for each
971combination, but the sequence of the calls across the elements is
972unspecified.
973
974@code{delete-duplicates} does not modify @var{lst}, but the return
975might share a common tail with @var{lst}. @code{delete-duplicates!}
976may modify the structure of @var{lst} to construct its return.
977
978In the worst case, this is an @math{O(N^2)} algorithm because it must
979check each element against all those preceding it. For long lists it
980is more efficient to sort and then compare only adjacent elements.
a0e07ba4
NJ
981@end deffn
982
983
984@node SRFI-1 Association Lists
3229f68b 985@subsubsection Association Lists
7c2e18cd
KR
986@cindex association list
987@cindex alist
a0e07ba4
NJ
988
989@c FIXME::martin: Review me!
990
991Association lists are described in detail in section @ref{Association
992Lists}. The present section only documents the additional procedures
993for dealing with association lists defined by SRFI-1.
994
8f85c0c6 995@deffn {Scheme Procedure} assoc key alist [=]
23f2b9a3
KR
996Return the pair from @var{alist} which matches @var{key}. This
997extends the core @code{assoc} (@pxref{Retrieving Alist Entries}) by
998taking an optional @var{=} comparison procedure.
999
1000The default comparison is @code{equal?}. If an @var{=} parameter is
679cceed 1001given it's called @code{(@var{=} @var{key} @var{alistcar})}, i.e.@: the
23f2b9a3
KR
1002given target @var{key} is the first argument, and a @code{car} from
1003@var{alist} is second.
ea6ea01b 1004
23f2b9a3
KR
1005For example a case-insensitive string lookup,
1006
1007@example
1008(assoc "yy" '(("XX" . 1) ("YY" . 2)) string-ci=?)
1009@result{} ("YY" . 2)
1010@end example
a0e07ba4
NJ
1011@end deffn
1012
8f85c0c6 1013@deffn {Scheme Procedure} alist-cons key datum alist
5e5999f9
KR
1014Cons a new association @var{key} and @var{datum} onto @var{alist} and
1015return the result. This is equivalent to
a0e07ba4
NJ
1016
1017@lisp
1018(cons (cons @var{key} @var{datum}) @var{alist})
1019@end lisp
1020
5e5999f9
KR
1021@code{acons} (@pxref{Adding or Setting Alist Entries}) in the Guile
1022core does the same thing.
a0e07ba4
NJ
1023@end deffn
1024
8f85c0c6 1025@deffn {Scheme Procedure} alist-copy alist
a0e07ba4
NJ
1026Return a newly allocated copy of @var{alist}, that means that the
1027spine of the list as well as the pairs are copied.
1028@end deffn
1029
8f85c0c6
NJ
1030@deffn {Scheme Procedure} alist-delete key alist [=]
1031@deffnx {Scheme Procedure} alist-delete! key alist [=]
bd35f1f0
KR
1032Return a list containing the elements of @var{alist} but with those
1033elements whose keys are equal to @var{key} deleted. The returned
1034elements will be in the same order as they were in @var{alist}.
a0e07ba4 1035
bd35f1f0
KR
1036Equality is determined by the @var{=} predicate, or @code{equal?} if
1037not given. The order in which elements are tested is unspecified, but
679cceed 1038each equality call is made @code{(= key alistkey)}, i.e.@: the given
bd35f1f0
KR
1039@var{key} parameter is first and the key from @var{alist} second.
1040This means for instance all associations with a key greater than 5 can
1041be removed with @code{(alist-delete 5 alist <)}.
1042
1043@code{alist-delete} does not modify @var{alist}, but the return might
1044share a common tail with @var{alist}. @code{alist-delete!} may modify
1045the list structure of @var{alist} to construct its return.
a0e07ba4
NJ
1046@end deffn
1047
1048
1049@node SRFI-1 Set Operations
3229f68b 1050@subsubsection Set Operations on Lists
7c2e18cd 1051@cindex list set operation
a0e07ba4 1052
4eb21177
KR
1053Lists can be used to represent sets of objects. The procedures in
1054this section operate on such lists as sets.
1055
1056Note that lists are not an efficient way to implement large sets. The
9aa0c3dd 1057procedures here typically take time @math{@var{m}@cross{}@var{n}} when
4eb21177
KR
1058operating on @var{m} and @var{n} element lists. Other data structures
1059like trees, bitsets (@pxref{Bit Vectors}) or hash tables (@pxref{Hash
1060Tables}) are faster.
1061
1062All these procedures take an equality predicate as the first argument.
1063This predicate is used for testing the objects in the list sets for
1064sameness. This predicate must be consistent with @code{eq?}
1065(@pxref{Equality}) in the sense that if two list elements are
1066@code{eq?} then they must also be equal under the predicate. This
1067simply means a given object must be equal to itself.
a0e07ba4 1068
df0a1002 1069@deffn {Scheme Procedure} lset<= = list @dots{}
4eb21177 1070Return @code{#t} if each list is a subset of the one following it.
df0a1002
BT
1071I.e., @var{list1} is a subset of @var{list2}, @var{list2} is a subset of
1072@var{list3}, etc., for as many lists as given. If only one list or no
1073lists are given, the return value is @code{#t}.
4eb21177
KR
1074
1075A list @var{x} is a subset of @var{y} if each element of @var{x} is
1076equal to some element in @var{y}. Elements are compared using the
1077given @var{=} procedure, called as @code{(@var{=} xelem yelem)}.
1078
1079@example
1080(lset<= eq?) @result{} #t
1081(lset<= eqv? '(1 2 3) '(1)) @result{} #f
1082(lset<= eqv? '(1 3 2) '(4 3 1 2)) @result{} #t
1083@end example
a0e07ba4
NJ
1084@end deffn
1085
df0a1002 1086@deffn {Scheme Procedure} lset= = list @dots{}
4eb21177 1087Return @code{#t} if all argument lists are set-equal. @var{list1} is
df0a1002
BT
1088compared to @var{list2}, @var{list2} to @var{list3}, etc., for as many
1089lists as given. If only one list or no lists are given, the return
1090value is @code{#t}.
4eb21177
KR
1091
1092Two lists @var{x} and @var{y} are set-equal if each element of @var{x}
1093is equal to some element of @var{y} and conversely each element of
1094@var{y} is equal to some element of @var{x}. The order of the
1095elements in the lists doesn't matter. Element equality is determined
1096with the given @var{=} procedure, called as @code{(@var{=} xelem
1097yelem)}, but exactly which calls are made is unspecified.
1098
1099@example
1100(lset= eq?) @result{} #t
1101(lset= eqv? '(1 2 3) '(3 2 1)) @result{} #t
1102(lset= string-ci=? '("a" "A" "b") '("B" "b" "a")) @result{} #t
1103@end example
a0e07ba4
NJ
1104@end deffn
1105
df0a1002
BT
1106@deffn {Scheme Procedure} lset-adjoin = list elem @dots{}
1107Add to @var{list} any of the given @var{elem}s not already in the list.
1108@var{elem}s are @code{cons}ed onto the start of @var{list} (so the
1109return value shares a common tail with @var{list}), but the order that
1110the @var{elem}s are added is unspecified.
4eb21177
KR
1111
1112The given @var{=} procedure is used for comparing elements, called as
df0a1002 1113@code{(@var{=} listelem elem)}, i.e., the second argument is one of
4eb21177
KR
1114the given @var{elem} parameters.
1115
1116@example
1117(lset-adjoin eqv? '(1 2 3) 4 1 5) @result{} (5 4 1 2 3)
1118@end example
a0e07ba4
NJ
1119@end deffn
1120
df0a1002
BT
1121@deffn {Scheme Procedure} lset-union = list @dots{}
1122@deffnx {Scheme Procedure} lset-union! = list @dots{}
4eb21177
KR
1123Return the union of the argument list sets. The result is built by
1124taking the union of @var{list1} and @var{list2}, then the union of
df0a1002 1125that with @var{list3}, etc., for as many lists as given. For one list
4eb21177
KR
1126argument that list itself is the result, for no list arguments the
1127result is the empty list.
1128
1129The union of two lists @var{x} and @var{y} is formed as follows. If
1130@var{x} is empty then the result is @var{y}. Otherwise start with
1131@var{x} as the result and consider each @var{y} element (from first to
1132last). A @var{y} element not equal to something already in the result
1133is @code{cons}ed onto the result.
1134
1135The given @var{=} procedure is used for comparing elements, called as
1136@code{(@var{=} relem yelem)}. The first argument is from the result
1137accumulated so far, and the second is from the list being union-ed in.
1138But exactly which calls are made is otherwise unspecified.
1139
1140Notice that duplicate elements in @var{list1} (or the first non-empty
1141list) are preserved, but that repeated elements in subsequent lists
1142are only added once.
1143
1144@example
1145(lset-union eqv?) @result{} ()
1146(lset-union eqv? '(1 2 3)) @result{} (1 2 3)
1147(lset-union eqv? '(1 2 1 3) '(2 4 5) '(5)) @result{} (5 4 1 2 1 3)
1148@end example
1149
1150@code{lset-union} doesn't change the given lists but the result may
1151share a tail with the first non-empty list. @code{lset-union!} can
1152modify all of the given lists to form the result.
a0e07ba4
NJ
1153@end deffn
1154
8f85c0c6
NJ
1155@deffn {Scheme Procedure} lset-intersection = list1 list2 @dots{}
1156@deffnx {Scheme Procedure} lset-intersection! = list1 list2 @dots{}
4eb21177
KR
1157Return the intersection of @var{list1} with the other argument lists,
1158meaning those elements of @var{list1} which are also in all of
1159@var{list2} etc. For one list argument, just that list is returned.
1160
1161The test for an element of @var{list1} to be in the return is simply
1162that it's equal to some element in each of @var{list2} etc. Notice
1163this means an element appearing twice in @var{list1} but only once in
1164each of @var{list2} etc will go into the return twice. The return has
1165its elements in the same order as they were in @var{list1}.
1166
1167The given @var{=} procedure is used for comparing elements, called as
1168@code{(@var{=} elem1 elemN)}. The first argument is from @var{list1}
1169and the second is from one of the subsequent lists. But exactly which
1170calls are made and in what order is unspecified.
1171
1172@example
1173(lset-intersection eqv? '(x y)) @result{} (x y)
1174(lset-intersection eqv? '(1 2 3) '(4 3 2)) @result{} (2 3)
1175(lset-intersection eqv? '(1 1 2 2) '(1 2) '(2 1) '(2)) @result{} (2 2)
1176@end example
1177
1178The return from @code{lset-intersection} may share a tail with
1179@var{list1}. @code{lset-intersection!} may modify @var{list1} to form
1180its result.
a0e07ba4
NJ
1181@end deffn
1182
8f85c0c6
NJ
1183@deffn {Scheme Procedure} lset-difference = list1 list2 @dots{}
1184@deffnx {Scheme Procedure} lset-difference! = list1 list2 @dots{}
4eb21177
KR
1185Return @var{list1} with any elements in @var{list2}, @var{list3} etc
1186removed (ie.@: subtracted). For one list argument, just that list is
1187returned.
1188
1189The given @var{=} procedure is used for comparing elements, called as
1190@code{(@var{=} elem1 elemN)}. The first argument is from @var{list1}
1191and the second from one of the subsequent lists. But exactly which
1192calls are made and in what order is unspecified.
a0e07ba4 1193
4eb21177
KR
1194@example
1195(lset-difference eqv? '(x y)) @result{} (x y)
1196(lset-difference eqv? '(1 2 3) '(3 1)) @result{} (2)
1197(lset-difference eqv? '(1 2 3) '(3) '(2)) @result{} (1)
1198@end example
1199
1200The return from @code{lset-difference} may share a tail with
1201@var{list1}. @code{lset-difference!} may modify @var{list1} to form
1202its result.
a0e07ba4
NJ
1203@end deffn
1204
8f85c0c6
NJ
1205@deffn {Scheme Procedure} lset-diff+intersection = list1 list2 @dots{}
1206@deffnx {Scheme Procedure} lset-diff+intersection! = list1 list2 @dots{}
4eb21177
KR
1207Return two values (@pxref{Multiple Values}), the difference and
1208intersection of the argument lists as per @code{lset-difference} and
1209@code{lset-intersection} above.
1210
1211For two list arguments this partitions @var{list1} into those elements
1212of @var{list1} which are in @var{list2} and not in @var{list2}. (But
1213for more than two arguments there can be elements of @var{list1} which
1214are neither part of the difference nor the intersection.)
1215
1216One of the return values from @code{lset-diff+intersection} may share
1217a tail with @var{list1}. @code{lset-diff+intersection!} may modify
1218@var{list1} to form its results.
1219@end deffn
1220
df0a1002
BT
1221@deffn {Scheme Procedure} lset-xor = list @dots{}
1222@deffnx {Scheme Procedure} lset-xor! = list @dots{}
4eb21177
KR
1223Return an XOR of the argument lists. For two lists this means those
1224elements which are in exactly one of the lists. For more than two
1225lists it means those elements which appear in an odd number of the
1226lists.
1227
1228To be precise, the XOR of two lists @var{x} and @var{y} is formed by
1229taking those elements of @var{x} not equal to any element of @var{y},
1230plus those elements of @var{y} not equal to any element of @var{x}.
1231Equality is determined with the given @var{=} procedure, called as
1232@code{(@var{=} e1 e2)}. One argument is from @var{x} and the other
1233from @var{y}, but which way around is unspecified. Exactly which
1234calls are made is also unspecified, as is the order of the elements in
1235the result.
1236
1237@example
1238(lset-xor eqv? '(x y)) @result{} (x y)
1239(lset-xor eqv? '(1 2 3) '(4 3 2)) @result{} (4 1)
1240@end example
1241
1242The return from @code{lset-xor} may share a tail with one of the list
1243arguments. @code{lset-xor!} may modify @var{list1} to form its
1244result.
a0e07ba4
NJ
1245@end deffn
1246
1247
1248@node SRFI-2
3229f68b 1249@subsection SRFI-2 - and-let*
8742c48b 1250@cindex SRFI-2
a0e07ba4 1251
4fd0db14
KR
1252@noindent
1253The following syntax can be obtained with
a0e07ba4 1254
4fd0db14
KR
1255@lisp
1256(use-modules (srfi srfi-2))
1257@end lisp
a0e07ba4 1258
abd731ff
NL
1259or alternatively
1260
1261@lisp
1262(use-modules (ice-9 and-let-star))
1263@end lisp
1264
4fd0db14
KR
1265@deffn {library syntax} and-let* (clause @dots{}) body @dots{}
1266A combination of @code{and} and @code{let*}.
1267
1268Each @var{clause} is evaluated in turn, and if @code{#f} is obtained
1269then evaluation stops and @code{#f} is returned. If all are
1270non-@code{#f} then @var{body} is evaluated and the last form gives the
6b1a6e4c
KR
1271return value, or if @var{body} is empty then the result is @code{#t}.
1272Each @var{clause} should be one of the following,
4fd0db14
KR
1273
1274@table @code
1275@item (symbol expr)
1276Evaluate @var{expr}, check for @code{#f}, and bind it to @var{symbol}.
1277Like @code{let*}, that binding is available to subsequent clauses.
1278@item (expr)
1279Evaluate @var{expr} and check for @code{#f}.
1280@item symbol
1281Get the value bound to @var{symbol} and check for @code{#f}.
1282@end table
a0e07ba4 1283
4fd0db14
KR
1284Notice that @code{(expr)} has an ``extra'' pair of parentheses, for
1285instance @code{((eq? x y))}. One way to remember this is to imagine
1286the @code{symbol} in @code{(symbol expr)} is omitted.
a0e07ba4 1287
4fd0db14
KR
1288@code{and-let*} is good for calculations where a @code{#f} value means
1289termination, but where a non-@code{#f} value is going to be needed in
1290subsequent expressions.
1291
1292The following illustrates this, it returns text between brackets
1293@samp{[...]} in a string, or @code{#f} if there are no such brackets
1294(ie.@: either @code{string-index} gives @code{#f}).
1295
1296@example
1297(define (extract-brackets str)
1298 (and-let* ((start (string-index str #\[))
1299 (end (string-index str #\] start)))
1300 (substring str (1+ start) end)))
1301@end example
1302
1303The following shows plain variables and expressions tested too.
1304@code{diagnostic-levels} is taken to be an alist associating a
1305diagnostic type with a level. @code{str} is printed only if the type
1306is known and its level is high enough.
1307
1308@example
1309(define (show-diagnostic type str)
1310 (and-let* (want-diagnostics
1311 (level (assq-ref diagnostic-levels type))
1312 ((>= level current-diagnostic-level)))
1313 (display str)))
1314@end example
1315
1316The advantage of @code{and-let*} is that an extended sequence of
1317expressions and tests doesn't require lots of nesting as would arise
1318from separate @code{and} and @code{let*}, or from @code{cond} with
1319@code{=>}.
1320
1321@end deffn
a0e07ba4
NJ
1322
1323
1324@node SRFI-4
3229f68b 1325@subsection SRFI-4 - Homogeneous numeric vector datatypes
8742c48b 1326@cindex SRFI-4
a0e07ba4 1327
27219b32
AW
1328SRFI-4 provides an interface to uniform numeric vectors: vectors whose elements
1329are all of a single numeric type. Guile offers uniform numeric vectors for
1330signed and unsigned 8-bit, 16-bit, 32-bit, and 64-bit integers, two sizes of
1331floating point values, and, as an extension to SRFI-4, complex floating-point
1332numbers of these two sizes.
1333
1334The standard SRFI-4 procedures and data types may be included via loading the
1335appropriate module:
1336
1337@example
1338(use-modules (srfi srfi-4))
1339@end example
1340
1341This module is currently a part of the default Guile environment, but it is a
1342good practice to explicitly import the module. In the future, using SRFI-4
1343procedures without importing the SRFI-4 module will cause a deprecation message
1344to be printed. (Of course, one may call the C functions at any time. Would that
1345C had modules!)
1346
1347@menu
1348* SRFI-4 Overview:: The warp and weft of uniform numeric vectors.
1349* SRFI-4 API:: Uniform vectors, from Scheme and from C.
27219b32
AW
1350* SRFI-4 and Bytevectors:: SRFI-4 vectors are backed by bytevectors.
1351* SRFI-4 Extensions:: Guile-specific extensions to the standard.
1352@end menu
1353
1354@node SRFI-4 Overview
1355@subsubsection SRFI-4 - Overview
1356
1357Uniform numeric vectors can be useful since they consume less memory
1358than the non-uniform, general vectors. Also, since the types they can
1359store correspond directly to C types, it is easier to work with them
1360efficiently on a low level. Consider image processing as an example,
1361where you want to apply a filter to some image. While you could store
1362the pixels of an image in a general vector and write a general
1363convolution function, things are much more efficient with uniform
1364vectors: the convolution function knows that all pixels are unsigned
13658-bit values (say), and can use a very tight inner loop.
1366
1367This is implemented in Scheme by having the compiler notice calls to the SRFI-4
1368accessors, and inline them to appropriate compiled code. From C you have access
1369to the raw array; functions for efficiently working with uniform numeric vectors
1370from C are listed at the end of this section.
1371
1372Uniform numeric vectors are the special case of one dimensional uniform
1373numeric arrays.
1374
1375There are 12 standard kinds of uniform numeric vectors, and they all have their
1376own complement of constructors, accessors, and so on. Procedures that operate on
1377a specific kind of uniform numeric vector have a ``tag'' in their name,
1378indicating the element type.
1379
1380@table @nicode
1381@item u8
1382unsigned 8-bit integers
1383
1384@item s8
1385signed 8-bit integers
1386
1387@item u16
1388unsigned 16-bit integers
1389
1390@item s16
1391signed 16-bit integers
1392
1393@item u32
1394unsigned 32-bit integers
1395
1396@item s32
1397signed 32-bit integers
1398
1399@item u64
1400unsigned 64-bit integers
1401
1402@item s64
1403signed 64-bit integers
1404
1405@item f32
1406the C type @code{float}
1407
1408@item f64
1409the C type @code{double}
1410
1411@end table
1412
1413In addition, Guile supports uniform arrays of complex numbers, with the
1414nonstandard tags:
1415
1416@table @nicode
1417
1418@item c32
1419complex numbers in rectangular form with the real and imaginary part
1420being a @code{float}
1421
1422@item c64
1423complex numbers in rectangular form with the real and imaginary part
1424being a @code{double}
1425
1426@end table
1427
1428The external representation (ie.@: read syntax) for these vectors is
1429similar to normal Scheme vectors, but with an additional tag from the
1430tables above indicating the vector's type. For example,
1431
1432@lisp
1433#u16(1 2 3)
1434#f64(3.1415 2.71)
1435@end lisp
1436
1437Note that the read syntax for floating-point here conflicts with
1438@code{#f} for false. In Standard Scheme one can write @code{(1 #f3)}
1439for a three element list @code{(1 #f 3)}, but for Guile @code{(1 #f3)}
1440is invalid. @code{(1 #f 3)} is almost certainly what one should write
1441anyway to make the intention clear, so this is rarely a problem.
1442
1443
1444@node SRFI-4 API
1445@subsubsection SRFI-4 - API
1446
1447Note that the @nicode{c32} and @nicode{c64} functions are only available from
1448@nicode{(srfi srfi-4 gnu)}.
1449
1450@deffn {Scheme Procedure} u8vector? obj
1451@deffnx {Scheme Procedure} s8vector? obj
1452@deffnx {Scheme Procedure} u16vector? obj
1453@deffnx {Scheme Procedure} s16vector? obj
1454@deffnx {Scheme Procedure} u32vector? obj
1455@deffnx {Scheme Procedure} s32vector? obj
1456@deffnx {Scheme Procedure} u64vector? obj
1457@deffnx {Scheme Procedure} s64vector? obj
1458@deffnx {Scheme Procedure} f32vector? obj
1459@deffnx {Scheme Procedure} f64vector? obj
1460@deffnx {Scheme Procedure} c32vector? obj
1461@deffnx {Scheme Procedure} c64vector? obj
1462@deffnx {C Function} scm_u8vector_p (obj)
1463@deffnx {C Function} scm_s8vector_p (obj)
1464@deffnx {C Function} scm_u16vector_p (obj)
1465@deffnx {C Function} scm_s16vector_p (obj)
1466@deffnx {C Function} scm_u32vector_p (obj)
1467@deffnx {C Function} scm_s32vector_p (obj)
1468@deffnx {C Function} scm_u64vector_p (obj)
1469@deffnx {C Function} scm_s64vector_p (obj)
1470@deffnx {C Function} scm_f32vector_p (obj)
1471@deffnx {C Function} scm_f64vector_p (obj)
1472@deffnx {C Function} scm_c32vector_p (obj)
1473@deffnx {C Function} scm_c64vector_p (obj)
1474Return @code{#t} if @var{obj} is a homogeneous numeric vector of the
1475indicated type.
1476@end deffn
1477
1478@deffn {Scheme Procedure} make-u8vector n [value]
1479@deffnx {Scheme Procedure} make-s8vector n [value]
1480@deffnx {Scheme Procedure} make-u16vector n [value]
1481@deffnx {Scheme Procedure} make-s16vector n [value]
1482@deffnx {Scheme Procedure} make-u32vector n [value]
1483@deffnx {Scheme Procedure} make-s32vector n [value]
1484@deffnx {Scheme Procedure} make-u64vector n [value]
1485@deffnx {Scheme Procedure} make-s64vector n [value]
1486@deffnx {Scheme Procedure} make-f32vector n [value]
1487@deffnx {Scheme Procedure} make-f64vector n [value]
1488@deffnx {Scheme Procedure} make-c32vector n [value]
1489@deffnx {Scheme Procedure} make-c64vector n [value]
5f6ffd66
BT
1490@deffnx {C Function} scm_make_u8vector (n, value)
1491@deffnx {C Function} scm_make_s8vector (n, value)
1492@deffnx {C Function} scm_make_u16vector (n, value)
1493@deffnx {C Function} scm_make_s16vector (n, value)
1494@deffnx {C Function} scm_make_u32vector (n, value)
1495@deffnx {C Function} scm_make_s32vector (n, value)
1496@deffnx {C Function} scm_make_u64vector (n, value)
1497@deffnx {C Function} scm_make_s64vector (n, value)
1498@deffnx {C Function} scm_make_f32vector (n, value)
1499@deffnx {C Function} scm_make_f64vector (n, value)
1500@deffnx {C Function} scm_make_c32vector (n, value)
1501@deffnx {C Function} scm_make_c64vector (n, value)
27219b32
AW
1502Return a newly allocated homogeneous numeric vector holding @var{n}
1503elements of the indicated type. If @var{value} is given, the vector
1504is initialized with that value, otherwise the contents are
1505unspecified.
1506@end deffn
1507
1508@deffn {Scheme Procedure} u8vector value @dots{}
1509@deffnx {Scheme Procedure} s8vector value @dots{}
1510@deffnx {Scheme Procedure} u16vector value @dots{}
1511@deffnx {Scheme Procedure} s16vector value @dots{}
1512@deffnx {Scheme Procedure} u32vector value @dots{}
1513@deffnx {Scheme Procedure} s32vector value @dots{}
1514@deffnx {Scheme Procedure} u64vector value @dots{}
1515@deffnx {Scheme Procedure} s64vector value @dots{}
1516@deffnx {Scheme Procedure} f32vector value @dots{}
1517@deffnx {Scheme Procedure} f64vector value @dots{}
1518@deffnx {Scheme Procedure} c32vector value @dots{}
1519@deffnx {Scheme Procedure} c64vector value @dots{}
1520@deffnx {C Function} scm_u8vector (values)
1521@deffnx {C Function} scm_s8vector (values)
1522@deffnx {C Function} scm_u16vector (values)
1523@deffnx {C Function} scm_s16vector (values)
1524@deffnx {C Function} scm_u32vector (values)
1525@deffnx {C Function} scm_s32vector (values)
1526@deffnx {C Function} scm_u64vector (values)
1527@deffnx {C Function} scm_s64vector (values)
1528@deffnx {C Function} scm_f32vector (values)
1529@deffnx {C Function} scm_f64vector (values)
1530@deffnx {C Function} scm_c32vector (values)
1531@deffnx {C Function} scm_c64vector (values)
1532Return a newly allocated homogeneous numeric vector of the indicated
1533type, holding the given parameter @var{value}s. The vector length is
1534the number of parameters given.
1535@end deffn
1536
1537@deffn {Scheme Procedure} u8vector-length vec
1538@deffnx {Scheme Procedure} s8vector-length vec
1539@deffnx {Scheme Procedure} u16vector-length vec
1540@deffnx {Scheme Procedure} s16vector-length vec
1541@deffnx {Scheme Procedure} u32vector-length vec
1542@deffnx {Scheme Procedure} s32vector-length vec
1543@deffnx {Scheme Procedure} u64vector-length vec
1544@deffnx {Scheme Procedure} s64vector-length vec
1545@deffnx {Scheme Procedure} f32vector-length vec
1546@deffnx {Scheme Procedure} f64vector-length vec
1547@deffnx {Scheme Procedure} c32vector-length vec
1548@deffnx {Scheme Procedure} c64vector-length vec
1549@deffnx {C Function} scm_u8vector_length (vec)
1550@deffnx {C Function} scm_s8vector_length (vec)
1551@deffnx {C Function} scm_u16vector_length (vec)
1552@deffnx {C Function} scm_s16vector_length (vec)
1553@deffnx {C Function} scm_u32vector_length (vec)
1554@deffnx {C Function} scm_s32vector_length (vec)
1555@deffnx {C Function} scm_u64vector_length (vec)
1556@deffnx {C Function} scm_s64vector_length (vec)
1557@deffnx {C Function} scm_f32vector_length (vec)
1558@deffnx {C Function} scm_f64vector_length (vec)
1559@deffnx {C Function} scm_c32vector_length (vec)
1560@deffnx {C Function} scm_c64vector_length (vec)
1561Return the number of elements in @var{vec}.
1562@end deffn
1563
1564@deffn {Scheme Procedure} u8vector-ref vec i
1565@deffnx {Scheme Procedure} s8vector-ref vec i
1566@deffnx {Scheme Procedure} u16vector-ref vec i
1567@deffnx {Scheme Procedure} s16vector-ref vec i
1568@deffnx {Scheme Procedure} u32vector-ref vec i
1569@deffnx {Scheme Procedure} s32vector-ref vec i
1570@deffnx {Scheme Procedure} u64vector-ref vec i
1571@deffnx {Scheme Procedure} s64vector-ref vec i
1572@deffnx {Scheme Procedure} f32vector-ref vec i
1573@deffnx {Scheme Procedure} f64vector-ref vec i
1574@deffnx {Scheme Procedure} c32vector-ref vec i
1575@deffnx {Scheme Procedure} c64vector-ref vec i
5f6ffd66
BT
1576@deffnx {C Function} scm_u8vector_ref (vec, i)
1577@deffnx {C Function} scm_s8vector_ref (vec, i)
1578@deffnx {C Function} scm_u16vector_ref (vec, i)
1579@deffnx {C Function} scm_s16vector_ref (vec, i)
1580@deffnx {C Function} scm_u32vector_ref (vec, i)
1581@deffnx {C Function} scm_s32vector_ref (vec, i)
1582@deffnx {C Function} scm_u64vector_ref (vec, i)
1583@deffnx {C Function} scm_s64vector_ref (vec, i)
1584@deffnx {C Function} scm_f32vector_ref (vec, i)
1585@deffnx {C Function} scm_f64vector_ref (vec, i)
1586@deffnx {C Function} scm_c32vector_ref (vec, i)
1587@deffnx {C Function} scm_c64vector_ref (vec, i)
27219b32
AW
1588Return the element at index @var{i} in @var{vec}. The first element
1589in @var{vec} is index 0.
1590@end deffn
1591
1592@deffn {Scheme Procedure} u8vector-set! vec i value
1593@deffnx {Scheme Procedure} s8vector-set! vec i value
1594@deffnx {Scheme Procedure} u16vector-set! vec i value
1595@deffnx {Scheme Procedure} s16vector-set! vec i value
1596@deffnx {Scheme Procedure} u32vector-set! vec i value
1597@deffnx {Scheme Procedure} s32vector-set! vec i value
1598@deffnx {Scheme Procedure} u64vector-set! vec i value
1599@deffnx {Scheme Procedure} s64vector-set! vec i value
1600@deffnx {Scheme Procedure} f32vector-set! vec i value
1601@deffnx {Scheme Procedure} f64vector-set! vec i value
1602@deffnx {Scheme Procedure} c32vector-set! vec i value
1603@deffnx {Scheme Procedure} c64vector-set! vec i value
5f6ffd66
BT
1604@deffnx {C Function} scm_u8vector_set_x (vec, i, value)
1605@deffnx {C Function} scm_s8vector_set_x (vec, i, value)
1606@deffnx {C Function} scm_u16vector_set_x (vec, i, value)
1607@deffnx {C Function} scm_s16vector_set_x (vec, i, value)
1608@deffnx {C Function} scm_u32vector_set_x (vec, i, value)
1609@deffnx {C Function} scm_s32vector_set_x (vec, i, value)
1610@deffnx {C Function} scm_u64vector_set_x (vec, i, value)
1611@deffnx {C Function} scm_s64vector_set_x (vec, i, value)
1612@deffnx {C Function} scm_f32vector_set_x (vec, i, value)
1613@deffnx {C Function} scm_f64vector_set_x (vec, i, value)
1614@deffnx {C Function} scm_c32vector_set_x (vec, i, value)
1615@deffnx {C Function} scm_c64vector_set_x (vec, i, value)
27219b32
AW
1616Set the element at index @var{i} in @var{vec} to @var{value}. The
1617first element in @var{vec} is index 0. The return value is
1618unspecified.
1619@end deffn
1620
1621@deffn {Scheme Procedure} u8vector->list vec
1622@deffnx {Scheme Procedure} s8vector->list vec
1623@deffnx {Scheme Procedure} u16vector->list vec
1624@deffnx {Scheme Procedure} s16vector->list vec
1625@deffnx {Scheme Procedure} u32vector->list vec
1626@deffnx {Scheme Procedure} s32vector->list vec
1627@deffnx {Scheme Procedure} u64vector->list vec
1628@deffnx {Scheme Procedure} s64vector->list vec
1629@deffnx {Scheme Procedure} f32vector->list vec
1630@deffnx {Scheme Procedure} f64vector->list vec
1631@deffnx {Scheme Procedure} c32vector->list vec
1632@deffnx {Scheme Procedure} c64vector->list vec
1633@deffnx {C Function} scm_u8vector_to_list (vec)
1634@deffnx {C Function} scm_s8vector_to_list (vec)
1635@deffnx {C Function} scm_u16vector_to_list (vec)
1636@deffnx {C Function} scm_s16vector_to_list (vec)
1637@deffnx {C Function} scm_u32vector_to_list (vec)
1638@deffnx {C Function} scm_s32vector_to_list (vec)
1639@deffnx {C Function} scm_u64vector_to_list (vec)
1640@deffnx {C Function} scm_s64vector_to_list (vec)
1641@deffnx {C Function} scm_f32vector_to_list (vec)
1642@deffnx {C Function} scm_f64vector_to_list (vec)
1643@deffnx {C Function} scm_c32vector_to_list (vec)
1644@deffnx {C Function} scm_c64vector_to_list (vec)
1645Return a newly allocated list holding all elements of @var{vec}.
1646@end deffn
1647
1648@deffn {Scheme Procedure} list->u8vector lst
1649@deffnx {Scheme Procedure} list->s8vector lst
1650@deffnx {Scheme Procedure} list->u16vector lst
1651@deffnx {Scheme Procedure} list->s16vector lst
1652@deffnx {Scheme Procedure} list->u32vector lst
1653@deffnx {Scheme Procedure} list->s32vector lst
1654@deffnx {Scheme Procedure} list->u64vector lst
1655@deffnx {Scheme Procedure} list->s64vector lst
1656@deffnx {Scheme Procedure} list->f32vector lst
1657@deffnx {Scheme Procedure} list->f64vector lst
1658@deffnx {Scheme Procedure} list->c32vector lst
1659@deffnx {Scheme Procedure} list->c64vector lst
1660@deffnx {C Function} scm_list_to_u8vector (lst)
1661@deffnx {C Function} scm_list_to_s8vector (lst)
1662@deffnx {C Function} scm_list_to_u16vector (lst)
1663@deffnx {C Function} scm_list_to_s16vector (lst)
1664@deffnx {C Function} scm_list_to_u32vector (lst)
1665@deffnx {C Function} scm_list_to_s32vector (lst)
1666@deffnx {C Function} scm_list_to_u64vector (lst)
1667@deffnx {C Function} scm_list_to_s64vector (lst)
1668@deffnx {C Function} scm_list_to_f32vector (lst)
1669@deffnx {C Function} scm_list_to_f64vector (lst)
1670@deffnx {C Function} scm_list_to_c32vector (lst)
1671@deffnx {C Function} scm_list_to_c64vector (lst)
1672Return a newly allocated homogeneous numeric vector of the indicated type,
1673initialized with the elements of the list @var{lst}.
1674@end deffn
1675
1676@deftypefn {C Function} SCM scm_take_u8vector (const scm_t_uint8 *data, size_t len)
1677@deftypefnx {C Function} SCM scm_take_s8vector (const scm_t_int8 *data, size_t len)
1678@deftypefnx {C Function} SCM scm_take_u16vector (const scm_t_uint16 *data, size_t len)
1679@deftypefnx {C Function} SCM scm_take_s16vector (const scm_t_int16 *data, size_t len)
1680@deftypefnx {C Function} SCM scm_take_u32vector (const scm_t_uint32 *data, size_t len)
1681@deftypefnx {C Function} SCM scm_take_s32vector (const scm_t_int32 *data, size_t len)
1682@deftypefnx {C Function} SCM scm_take_u64vector (const scm_t_uint64 *data, size_t len)
1683@deftypefnx {C Function} SCM scm_take_s64vector (const scm_t_int64 *data, size_t len)
1684@deftypefnx {C Function} SCM scm_take_f32vector (const float *data, size_t len)
1685@deftypefnx {C Function} SCM scm_take_f64vector (const double *data, size_t len)
1686@deftypefnx {C Function} SCM scm_take_c32vector (const float *data, size_t len)
1687@deftypefnx {C Function} SCM scm_take_c64vector (const double *data, size_t len)
1688Return a new uniform numeric vector of the indicated type and length
1689that uses the memory pointed to by @var{data} to store its elements.
1690This memory will eventually be freed with @code{free}. The argument
1691@var{len} specifies the number of elements in @var{data}, not its size
1692in bytes.
1693
1694The @code{c32} and @code{c64} variants take a pointer to a C array of
1695@code{float}s or @code{double}s. The real parts of the complex numbers
1696are at even indices in that array, the corresponding imaginary parts are
1697at the following odd index.
1698@end deftypefn
1699
1700@deftypefn {C Function} {const scm_t_uint8 *} scm_u8vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1701@deftypefnx {C Function} {const scm_t_int8 *} scm_s8vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1702@deftypefnx {C Function} {const scm_t_uint16 *} scm_u16vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1703@deftypefnx {C Function} {const scm_t_int16 *} scm_s16vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1704@deftypefnx {C Function} {const scm_t_uint32 *} scm_u32vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1705@deftypefnx {C Function} {const scm_t_int32 *} scm_s32vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1706@deftypefnx {C Function} {const scm_t_uint64 *} scm_u64vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1707@deftypefnx {C Function} {const scm_t_int64 *} scm_s64vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
ecb87335 1708@deftypefnx {C Function} {const float *} scm_f32vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
27219b32
AW
1709@deftypefnx {C Function} {const double *} scm_f64vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1710@deftypefnx {C Function} {const float *} scm_c32vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1711@deftypefnx {C Function} {const double *} scm_c64vector_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1712Like @code{scm_vector_elements} (@pxref{Vector Accessing from C}), but
1713returns a pointer to the elements of a uniform numeric vector of the
1714indicated kind.
1715@end deftypefn
1716
1717@deftypefn {C Function} {scm_t_uint8 *} scm_u8vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1718@deftypefnx {C Function} {scm_t_int8 *} scm_s8vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1719@deftypefnx {C Function} {scm_t_uint16 *} scm_u16vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1720@deftypefnx {C Function} {scm_t_int16 *} scm_s16vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1721@deftypefnx {C Function} {scm_t_uint32 *} scm_u32vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1722@deftypefnx {C Function} {scm_t_int32 *} scm_s32vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1723@deftypefnx {C Function} {scm_t_uint64 *} scm_u64vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1724@deftypefnx {C Function} {scm_t_int64 *} scm_s64vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
ecb87335 1725@deftypefnx {C Function} {float *} scm_f32vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
27219b32
AW
1726@deftypefnx {C Function} {double *} scm_f64vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1727@deftypefnx {C Function} {float *} scm_c32vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1728@deftypefnx {C Function} {double *} scm_c64vector_writable_elements (SCM vec, scm_t_array_handle *handle, size_t *lenp, ssize_t *incp)
1729Like @code{scm_vector_writable_elements} (@pxref{Vector Accessing from
1730C}), but returns a pointer to the elements of a uniform numeric vector
1731of the indicated kind.
1732@end deftypefn
1733
27219b32
AW
1734@node SRFI-4 and Bytevectors
1735@subsubsection SRFI-4 - Relation to bytevectors
1736
1737Guile implements SRFI-4 vectors using bytevectors (@pxref{Bytevectors}). Often
1738when you have a numeric vector, you end up wanting to write its bytes somewhere,
1739or have access to the underlying bytes, or read in bytes from somewhere else.
1740Bytevectors are very good at this sort of thing. But the SRFI-4 APIs are nicer
1741to use when doing number-crunching, because they are addressed by element and
1742not by byte.
1743
1744So as a compromise, Guile allows all bytevector functions to operate on numeric
1745vectors. They address the underlying bytes in the native endianness, as one
1746would expect.
1747
1748Following the same reasoning, that it's just bytes underneath, Guile also allows
1749uniform vectors of a given type to be accessed as if they were of any type. One
1750can fill a @nicode{u32vector}, and access its elements with
1751@nicode{u8vector-ref}. One can use @nicode{f64vector-ref} on bytevectors. It's
1752all the same to Guile.
1753
1754In this way, uniform numeric vectors may be written to and read from
1755input/output ports using the procedures that operate on bytevectors.
1756
1757@xref{Bytevectors}, for more information.
1758
1759
1760@node SRFI-4 Extensions
1761@subsubsection SRFI-4 - Guile extensions
1762
1763Guile defines some useful extensions to SRFI-4, which are not available in the
1764default Guile environment. They may be imported by loading the extensions
1765module:
1766
1767@example
1768(use-modules (srfi srfi-4 gnu))
1769@end example
1770
1771@deffn {Scheme Procedure} any->u8vector obj
1772@deffnx {Scheme Procedure} any->s8vector obj
1773@deffnx {Scheme Procedure} any->u16vector obj
1774@deffnx {Scheme Procedure} any->s16vector obj
1775@deffnx {Scheme Procedure} any->u32vector obj
1776@deffnx {Scheme Procedure} any->s32vector obj
1777@deffnx {Scheme Procedure} any->u64vector obj
1778@deffnx {Scheme Procedure} any->s64vector obj
1779@deffnx {Scheme Procedure} any->f32vector obj
1780@deffnx {Scheme Procedure} any->f64vector obj
1781@deffnx {Scheme Procedure} any->c32vector obj
1782@deffnx {Scheme Procedure} any->c64vector obj
1783@deffnx {C Function} scm_any_to_u8vector (obj)
1784@deffnx {C Function} scm_any_to_s8vector (obj)
1785@deffnx {C Function} scm_any_to_u16vector (obj)
1786@deffnx {C Function} scm_any_to_s16vector (obj)
1787@deffnx {C Function} scm_any_to_u32vector (obj)
1788@deffnx {C Function} scm_any_to_s32vector (obj)
1789@deffnx {C Function} scm_any_to_u64vector (obj)
1790@deffnx {C Function} scm_any_to_s64vector (obj)
1791@deffnx {C Function} scm_any_to_f32vector (obj)
1792@deffnx {C Function} scm_any_to_f64vector (obj)
1793@deffnx {C Function} scm_any_to_c32vector (obj)
1794@deffnx {C Function} scm_any_to_c64vector (obj)
1795Return a (maybe newly allocated) uniform numeric vector of the indicated
1796type, initialized with the elements of @var{obj}, which must be a list,
1797a vector, or a uniform vector. When @var{obj} is already a suitable
1798uniform numeric vector, it is returned unchanged.
1799@end deffn
1800
a0e07ba4
NJ
1801
1802@node SRFI-6
3229f68b 1803@subsection SRFI-6 - Basic String Ports
8742c48b 1804@cindex SRFI-6
a0e07ba4
NJ
1805
1806SRFI-6 defines the procedures @code{open-input-string},
6dce942c
MW
1807@code{open-output-string} and @code{get-output-string}. These
1808procedures are included in the Guile core, so using this module does not
1809make any difference at the moment. But it is possible that support for
1810SRFI-6 will be factored out of the core library in the future, so using
1811this module does not hurt, after all.
a0e07ba4
NJ
1812
1813@node SRFI-8
3229f68b 1814@subsection SRFI-8 - receive
8742c48b 1815@cindex SRFI-8
a0e07ba4
NJ
1816
1817@code{receive} is a syntax for making the handling of multiple-value
1818procedures easier. It is documented in @xref{Multiple Values}.
1819
1820
1821@node SRFI-9
3229f68b 1822@subsection SRFI-9 - define-record-type
a0e07ba4 1823
6afe385d 1824This SRFI is a syntax for defining new record types and creating
ec7e4f77
LC
1825predicate, constructor, and field getter and setter functions. It is
1826documented in the ``Compound Data Types'' section of the manual
1827(@pxref{SRFI-9 Records}).
a0e07ba4 1828
a0e07ba4
NJ
1829
1830@node SRFI-10
3229f68b 1831@subsection SRFI-10 - Hash-Comma Reader Extension
8742c48b 1832@cindex SRFI-10
a0e07ba4
NJ
1833
1834@cindex hash-comma
1835@cindex #,()
633acbe2
KR
1836This SRFI implements a reader extension @code{#,()} called hash-comma.
1837It allows the reader to give new kinds of objects, for use both in
1838data and as constants or literals in source code. This feature is
1839available with
a0e07ba4 1840
633acbe2
KR
1841@example
1842(use-modules (srfi srfi-10))
1843@end example
1844
1845@noindent
1846The new read syntax is of the form
a0e07ba4
NJ
1847
1848@example
633acbe2 1849#,(@var{tag} @var{arg}@dots{})
a0e07ba4
NJ
1850@end example
1851
633acbe2
KR
1852@noindent
1853where @var{tag} is a symbol and the @var{arg}s are objects taken as
1854parameters. @var{tag}s are registered with the following procedure.
a0e07ba4 1855
633acbe2
KR
1856@deffn {Scheme Procedure} define-reader-ctor tag proc
1857Register @var{proc} as the constructor for a hash-comma read syntax
679cceed 1858starting with symbol @var{tag}, i.e.@: @nicode{#,(@var{tag} arg@dots{})}.
633acbe2
KR
1859@var{proc} is called with the given arguments @code{(@var{proc}
1860arg@dots{})} and the object it returns is the result of the read.
1861@end deffn
a0e07ba4 1862
633acbe2
KR
1863@noindent
1864For example, a syntax giving a list of @var{N} copies of an object.
1865
1866@example
1867(define-reader-ctor 'repeat
1868 (lambda (obj reps)
1869 (make-list reps obj)))
1870
1871(display '#,(repeat 99 3))
1872@print{} (99 99 99)
1873@end example
1874
1875Notice the quote @nicode{'} when the @nicode{#,( )} is used. The
1876@code{repeat} handler returns a list and the program must quote to use
1877it literally, the same as any other list. Ie.
1878
1879@example
1880(display '#,(repeat 99 3))
a0e07ba4 1881@result{}
633acbe2
KR
1882(display '(99 99 99))
1883@end example
a0e07ba4 1884
633acbe2
KR
1885When a handler returns an object which is self-evaluating, like a
1886number or a string, then there's no need for quoting, just as there's
1887no need when giving those directly as literals. For example an
1888addition,
a0e07ba4 1889
633acbe2
KR
1890@example
1891(define-reader-ctor 'sum
1892 (lambda (x y)
1893 (+ x y)))
1894(display #,(sum 123 456)) @print{} 579
1895@end example
1896
1897A typical use for @nicode{#,()} is to get a read syntax for objects
1898which don't otherwise have one. For example, the following allows a
1899hash table to be given literally, with tags and values, ready for fast
1900lookup.
1901
1902@example
1903(define-reader-ctor 'hash
1904 (lambda elems
1905 (let ((table (make-hash-table)))
1906 (for-each (lambda (elem)
01549abb
KR
1907 (apply hash-set! table elem))
1908 elems)
633acbe2
KR
1909 table)))
1910
1911(define (animal->family animal)
1912 (hash-ref '#,(hash ("tiger" "cat")
1913 ("lion" "cat")
1914 ("wolf" "dog"))
1915 animal))
1916
1917(animal->family "lion") @result{} "cat"
1918@end example
1919
1920Or for example the following is a syntax for a compiled regular
1921expression (@pxref{Regular Expressions}).
1922
1923@example
1924(use-modules (ice-9 regex))
1925
1926(define-reader-ctor 'regexp make-regexp)
1927
1928(define (extract-angs str)
1929 (let ((match (regexp-exec '#,(regexp "<([A-Z0-9]+)>") str)))
1930 (and match
1931 (match:substring match 1))))
1932
1933(extract-angs "foo <BAR> quux") @result{} "BAR"
1934@end example
1935
1936@sp 1
1937@nicode{#,()} is somewhat similar to @code{define-macro}
1938(@pxref{Macros}) in that handler code is run to produce a result, but
1939@nicode{#,()} operates at the read stage, so it can appear in data for
1940@code{read} (@pxref{Scheme Read}), not just in code to be executed.
1941
1942Because @nicode{#,()} is handled at read-time it has no direct access
1943to variables etc. A symbol in the arguments is just a symbol, not a
1944variable reference. The arguments are essentially constants, though
1945the handler procedure can use them in any complicated way it might
1946want.
1947
1948Once @code{(srfi srfi-10)} has loaded, @nicode{#,()} is available
1949globally, there's no need to use @code{(srfi srfi-10)} in later
1950modules. Similarly the tags registered are global and can be used
1951anywhere once registered.
1952
1953There's no attempt to record what previous @nicode{#,()} forms have
1954been seen, if two identical forms occur then two calls are made to the
1955handler procedure. The handler might like to maintain a cache or
1956similar to avoid making copies of large objects, depending on expected
1957usage.
1958
1959In code the best uses of @nicode{#,()} are generally when there's a
1960lot of objects of a particular kind as literals or constants. If
1961there's just a few then some local variables and initializers are
1962fine, but that becomes tedious and error prone when there's a lot, and
1963the anonymous and compact syntax of @nicode{#,()} is much better.
a0e07ba4
NJ
1964
1965
1966@node SRFI-11
3229f68b 1967@subsection SRFI-11 - let-values
8742c48b 1968@cindex SRFI-11
a0e07ba4 1969
8742c48b 1970@findex let-values
c010924a 1971@findex let*-values
a0e07ba4 1972This module implements the binding forms for multiple values
c010924a 1973@code{let-values} and @code{let*-values}. These forms are similar to
a0e07ba4
NJ
1974@code{let} and @code{let*} (@pxref{Local Bindings}), but they support
1975binding of the values returned by multiple-valued expressions.
1976
1977Write @code{(use-modules (srfi srfi-11))} to make the bindings
1978available.
1979
1980@lisp
1981(let-values (((x y) (values 1 2))
1982 ((z f) (values 3 4)))
1983 (+ x y z f))
1984@result{}
198510
1986@end lisp
1987
1988@code{let-values} performs all bindings simultaneously, which means that
1989no expression in the binding clauses may refer to variables bound in the
c010924a 1990same clause list. @code{let*-values}, on the other hand, performs the
a0e07ba4
NJ
1991bindings sequentially, just like @code{let*} does for single-valued
1992expressions.
1993
1994
1995@node SRFI-13
3229f68b 1996@subsection SRFI-13 - String Library
8742c48b 1997@cindex SRFI-13
a0e07ba4 1998
5676b4fa 1999The SRFI-13 procedures are always available, @xref{Strings}.
a0e07ba4
NJ
2000
2001@node SRFI-14
3229f68b 2002@subsection SRFI-14 - Character-set Library
8742c48b 2003@cindex SRFI-14
a0e07ba4 2004
050ab45f
MV
2005The SRFI-14 data type and procedures are always available,
2006@xref{Character Sets}.
a0e07ba4
NJ
2007
2008@node SRFI-16
3229f68b 2009@subsection SRFI-16 - case-lambda
8742c48b 2010@cindex SRFI-16
7c2e18cd
KR
2011@cindex variable arity
2012@cindex arity, variable
a0e07ba4 2013
f916cbc4
AW
2014SRFI-16 defines a variable-arity @code{lambda} form,
2015@code{case-lambda}. This form is available in the default Guile
2016environment. @xref{Case-lambda}, for more information.
a0e07ba4
NJ
2017
2018@node SRFI-17
3229f68b 2019@subsection SRFI-17 - Generalized set!
8742c48b 2020@cindex SRFI-17
a0e07ba4 2021
9a18d8d4
KR
2022This SRFI implements a generalized @code{set!}, allowing some
2023``referencing'' functions to be used as the target location of a
2024@code{set!}. This feature is available from
2025
2026@example
2027(use-modules (srfi srfi-17))
2028@end example
2029
2030@noindent
2031For example @code{vector-ref} is extended so that
2032
2033@example
2034(set! (vector-ref vec idx) new-value)
2035@end example
2036
2037@noindent
2038is equivalent to
2039
2040@example
2041(vector-set! vec idx new-value)
2042@end example
2043
2044The idea is that a @code{vector-ref} expression identifies a location,
2045which may be either fetched or stored. The same form is used for the
2046location in both cases, encouraging visual clarity. This is similar
2047to the idea of an ``lvalue'' in C.
2048
2049The mechanism for this kind of @code{set!} is in the Guile core
2050(@pxref{Procedures with Setters}). This module adds definitions of
2051the following functions as procedures with setters, allowing them to
2052be targets of a @code{set!},
2053
2054@quotation
2055@nicode{car}, @nicode{cdr}, @nicode{caar}, @nicode{cadr},
2056@nicode{cdar}, @nicode{cddr}, @nicode{caaar}, @nicode{caadr},
2057@nicode{cadar}, @nicode{caddr}, @nicode{cdaar}, @nicode{cdadr},
2058@nicode{cddar}, @nicode{cdddr}, @nicode{caaaar}, @nicode{caaadr},
2059@nicode{caadar}, @nicode{caaddr}, @nicode{cadaar}, @nicode{cadadr},
2060@nicode{caddar}, @nicode{cadddr}, @nicode{cdaaar}, @nicode{cdaadr},
2061@nicode{cdadar}, @nicode{cdaddr}, @nicode{cddaar}, @nicode{cddadr},
2062@nicode{cdddar}, @nicode{cddddr}
2063
2064@nicode{string-ref}, @nicode{vector-ref}
2065@end quotation
2066
2067The SRFI specifies @code{setter} (@pxref{Procedures with Setters}) as
2068a procedure with setter, allowing the setter for a procedure to be
2069changed, eg.@: @code{(set! (setter foo) my-new-setter-handler)}.
2070Currently Guile does not implement this, a setter can only be
2071specified on creation (@code{getter-with-setter} below).
2072
2073@defun getter-with-setter
2074The same as the Guile core @code{make-procedure-with-setter}
2075(@pxref{Procedures with Setters}).
2076@end defun
a0e07ba4 2077
12991fed 2078
e68f492a
JG
2079@node SRFI-18
2080@subsection SRFI-18 - Multithreading support
2081@cindex SRFI-18
2082
2083This is an implementation of the SRFI-18 threading and synchronization
2084library. The functions and variables described here are provided by
2085
2086@example
2087(use-modules (srfi srfi-18))
2088@end example
2089
2090As a general rule, the data types and functions in this SRFI-18
2091implementation are compatible with the types and functions in Guile's
2092core threading code. For example, mutexes created with the SRFI-18
2093@code{make-mutex} function can be passed to the built-in Guile
2094function @code{lock-mutex} (@pxref{Mutexes and Condition Variables}),
2095and mutexes created with the built-in Guile function @code{make-mutex}
2096can be passed to the SRFI-18 function @code{mutex-lock!}. Cases in
2097which this does not hold true are noted in the following sections.
2098
2099@menu
2100* SRFI-18 Threads:: Executing code
2101* SRFI-18 Mutexes:: Mutual exclusion devices
2102* SRFI-18 Condition variables:: Synchronizing of groups of threads
2103* SRFI-18 Time:: Representation of times and durations
2104* SRFI-18 Exceptions:: Signalling and handling errors
2105@end menu
2106
2107@node SRFI-18 Threads
2108@subsubsection SRFI-18 Threads
2109
2110Threads created by SRFI-18 differ in two ways from threads created by
2111Guile's built-in thread functions. First, a thread created by SRFI-18
2112@code{make-thread} begins in a blocked state and will not start
2113execution until @code{thread-start!} is called on it. Second, SRFI-18
2114threads are constructed with a top-level exception handler that
2115captures any exceptions that are thrown on thread exit. In all other
2116regards, SRFI-18 threads are identical to normal Guile threads.
2117
2118@defun current-thread
2119Returns the thread that called this function. This is the same
2120procedure as the same-named built-in procedure @code{current-thread}
2121(@pxref{Threads}).
2122@end defun
2123
2124@defun thread? obj
2125Returns @code{#t} if @var{obj} is a thread, @code{#f} otherwise. This
2126is the same procedure as the same-named built-in procedure
2127@code{thread?} (@pxref{Threads}).
2128@end defun
2129
2130@defun make-thread thunk [name]
2131Call @code{thunk} in a new thread and with a new dynamic state,
2132returning the new thread and optionally assigning it the object name
2133@var{name}, which may be any Scheme object.
2134
2135Note that the name @code{make-thread} conflicts with the
2136@code{(ice-9 threads)} function @code{make-thread}. Applications
2137wanting to use both of these functions will need to refer to them by
2138different names.
2139@end defun
2140
2141@defun thread-name thread
2142Returns the name assigned to @var{thread} at the time of its creation,
2143or @code{#f} if it was not given a name.
2144@end defun
2145
2146@defun thread-specific thread
2147@defunx thread-specific-set! thread obj
2148Get or set the ``object-specific'' property of @var{thread}. In
2149Guile's implementation of SRFI-18, this value is stored as an object
2150property, and will be @code{#f} if not set.
2151@end defun
2152
2153@defun thread-start! thread
2154Unblocks @var{thread} and allows it to begin execution if it has not
2155done so already.
2156@end defun
2157
2158@defun thread-yield!
2159If one or more threads are waiting to execute, calling
2160@code{thread-yield!} forces an immediate context switch to one of them.
2161Otherwise, @code{thread-yield!} has no effect. @code{thread-yield!}
2162behaves identically to the Guile built-in function @code{yield}.
2163@end defun
2164
2165@defun thread-sleep! timeout
2166The current thread waits until the point specified by the time object
2167@var{timeout} is reached (@pxref{SRFI-18 Time}). This blocks the
2168thread only if @var{timeout} represents a point in the future. it is
2169an error for @var{timeout} to be @code{#f}.
2170@end defun
2171
2172@defun thread-terminate! thread
2173Causes an abnormal termination of @var{thread}. If @var{thread} is
2174not already terminated, all mutexes owned by @var{thread} become
2175unlocked/abandoned. If @var{thread} is the current thread,
2176@code{thread-terminate!} does not return. Otherwise
2177@code{thread-terminate!} returns an unspecified value; the termination
2178of @var{thread} will occur before @code{thread-terminate!} returns.
2179Subsequent attempts to join on @var{thread} will cause a ``terminated
2180thread exception'' to be raised.
2181
2182@code{thread-terminate!} is compatible with the thread cancellation
2183procedures in the core threads API (@pxref{Threads}) in that if a
2184cleanup handler has been installed for the target thread, it will be
2185called before the thread exits and its return value (or exception, if
2186any) will be stored for later retrieval via a call to
2187@code{thread-join!}.
2188@end defun
2189
2190@defun thread-join! thread [timeout [timeout-val]]
2191Wait for @var{thread} to terminate and return its exit value. When a
2192time value @var{timeout} is given, it specifies a point in time where
2193the waiting should be aborted. When the waiting is aborted,
64de6db5 2194@var{timeout-val} is returned if it is specified; otherwise, a
e68f492a
JG
2195@code{join-timeout-exception} exception is raised
2196(@pxref{SRFI-18 Exceptions}). Exceptions may also be raised if the
2197thread was terminated by a call to @code{thread-terminate!}
2198(@code{terminated-thread-exception} will be raised) or if the thread
2199exited by raising an exception that was handled by the top-level
2200exception handler (@code{uncaught-exception} will be raised; the
2201original exception can be retrieved using
2202@code{uncaught-exception-reason}).
2203@end defun
2204
2205
2206@node SRFI-18 Mutexes
2207@subsubsection SRFI-18 Mutexes
2208
2209The behavior of Guile's built-in mutexes is parameterized via a set of
2210flags passed to the @code{make-mutex} procedure in the core
2211(@pxref{Mutexes and Condition Variables}). To satisfy the requirements
2212for mutexes specified by SRFI-18, the @code{make-mutex} procedure
2213described below sets the following flags:
2214@itemize @bullet
2215@item
2216@code{recursive}: the mutex can be locked recursively
2217@item
2218@code{unchecked-unlock}: attempts to unlock a mutex that is already
2219unlocked will not raise an exception
2220@item
2221@code{allow-external-unlock}: the mutex can be unlocked by any thread,
2222not just the thread that locked it originally
2223@end itemize
2224
2225@defun make-mutex [name]
2226Returns a new mutex, optionally assigning it the object name
2227@var{name}, which may be any Scheme object. The returned mutex will be
2228created with the configuration described above. Note that the name
2229@code{make-mutex} conflicts with Guile core function @code{make-mutex}.
2230Applications wanting to use both of these functions will need to refer
2231to them by different names.
2232@end defun
2233
2234@defun mutex-name mutex
2235Returns the name assigned to @var{mutex} at the time of its creation,
2236or @code{#f} if it was not given a name.
2237@end defun
2238
2239@defun mutex-specific mutex
2240@defunx mutex-specific-set! mutex obj
2241Get or set the ``object-specific'' property of @var{mutex}. In Guile's
2242implementation of SRFI-18, this value is stored as an object property,
2243and will be @code{#f} if not set.
2244@end defun
2245
2246@defun mutex-state mutex
2247Returns information about the state of @var{mutex}. Possible values
2248are:
2249@itemize @bullet
2250@item
2251thread @code{T}: the mutex is in the locked/owned state and thread T
2252is the owner of the mutex
2253@item
2254symbol @code{not-owned}: the mutex is in the locked/not-owned state
2255@item
2256symbol @code{abandoned}: the mutex is in the unlocked/abandoned state
2257@item
2258symbol @code{not-abandoned}: the mutex is in the
2259unlocked/not-abandoned state
2260@end itemize
2261@end defun
2262
2263@defun mutex-lock! mutex [timeout [thread]]
2264Lock @var{mutex}, optionally specifying a time object @var{timeout}
2265after which to abort the lock attempt and a thread @var{thread} giving
2266a new owner for @var{mutex} different than the current thread. This
2267procedure has the same behavior as the @code{lock-mutex} procedure in
2268the core library.
2269@end defun
2270
2271@defun mutex-unlock! mutex [condition-variable [timeout]]
2272Unlock @var{mutex}, optionally specifying a condition variable
2273@var{condition-variable} on which to wait, either indefinitely or,
2274optionally, until the time object @var{timeout} has passed, to be
2275signalled. This procedure has the same behavior as the
2276@code{unlock-mutex} procedure in the core library.
2277@end defun
2278
2279
2280@node SRFI-18 Condition variables
2281@subsubsection SRFI-18 Condition variables
2282
2283SRFI-18 does not specify a ``wait'' function for condition variables.
2284Waiting on a condition variable can be simulated using the SRFI-18
2285@code{mutex-unlock!} function described in the previous section, or
2286Guile's built-in @code{wait-condition-variable} procedure can be used.
2287
2288@defun condition-variable? obj
2289Returns @code{#t} if @var{obj} is a condition variable, @code{#f}
2290otherwise. This is the same procedure as the same-named built-in
2291procedure
2292(@pxref{Mutexes and Condition Variables, @code{condition-variable?}}).
2293@end defun
2294
2295@defun make-condition-variable [name]
2296Returns a new condition variable, optionally assigning it the object
2297name @var{name}, which may be any Scheme object. This procedure
2298replaces a procedure of the same name in the core library.
2299@end defun
2300
2301@defun condition-variable-name condition-variable
64de6db5
BT
2302Returns the name assigned to @var{condition-variable} at the time of its
2303creation, or @code{#f} if it was not given a name.
e68f492a
JG
2304@end defun
2305
2306@defun condition-variable-specific condition-variable
2307@defunx condition-variable-specific-set! condition-variable obj
2308Get or set the ``object-specific'' property of
2309@var{condition-variable}. In Guile's implementation of SRFI-18, this
2310value is stored as an object property, and will be @code{#f} if not
2311set.
2312@end defun
2313
2314@defun condition-variable-signal! condition-variable
2315@defunx condition-variable-broadcast! condition-variable
2316Wake up one thread that is waiting for @var{condition-variable}, in
2317the case of @code{condition-variable-signal!}, or all threads waiting
2318for it, in the case of @code{condition-variable-broadcast!}. The
2319behavior of these procedures is equivalent to that of the procedures
2320@code{signal-condition-variable} and
2321@code{broadcast-condition-variable} in the core library.
2322@end defun
2323
2324
2325@node SRFI-18 Time
2326@subsubsection SRFI-18 Time
2327
2328The SRFI-18 time functions manipulate time in two formats: a
2329``time object'' type that represents an absolute point in time in some
2330implementation-specific way; and the number of seconds since some
2331unspecified ``epoch''. In Guile's implementation, the epoch is the
2332Unix epoch, 00:00:00 UTC, January 1, 1970.
2333
2334@defun current-time
2335Return the current time as a time object. This procedure replaces
2336the procedure of the same name in the core library, which returns the
2337current time in seconds since the epoch.
2338@end defun
2339
2340@defun time? obj
2341Returns @code{#t} if @var{obj} is a time object, @code{#f} otherwise.
2342@end defun
2343
2344@defun time->seconds time
2345@defunx seconds->time seconds
2346Convert between time objects and numerical values representing the
2347number of seconds since the epoch. When converting from a time object
2348to seconds, the return value is the number of seconds between
2349@var{time} and the epoch. When converting from seconds to a time
2350object, the return value is a time object that represents a time
2351@var{seconds} seconds after the epoch.
2352@end defun
2353
2354
2355@node SRFI-18 Exceptions
2356@subsubsection SRFI-18 Exceptions
2357
2358SRFI-18 exceptions are identical to the exceptions provided by
2359Guile's implementation of SRFI-34. The behavior of exception
2360handlers invoked to handle exceptions thrown from SRFI-18 functions,
2361however, differs from the conventional behavior of SRFI-34 in that
2362the continuation of the handler is the same as that of the call to
2363the function. Handlers are called in a tail-recursive manner; the
2364exceptions do not ``bubble up''.
2365
2366@defun current-exception-handler
2367Returns the current exception handler.
2368@end defun
2369
2370@defun with-exception-handler handler thunk
2371Installs @var{handler} as the current exception handler and calls the
2372procedure @var{thunk} with no arguments, returning its value as the
2373value of the exception. @var{handler} must be a procedure that accepts
2374a single argument. The current exception handler at the time this
2375procedure is called will be restored after the call returns.
2376@end defun
2377
2378@defun raise obj
2379Raise @var{obj} as an exception. This is the same procedure as the
2380same-named procedure defined in SRFI 34.
2381@end defun
2382
2383@defun join-timeout-exception? obj
2384Returns @code{#t} if @var{obj} is an exception raised as the result of
2385performing a timed join on a thread that does not exit within the
2386specified timeout, @code{#f} otherwise.
2387@end defun
2388
2389@defun abandoned-mutex-exception? obj
2390Returns @code{#t} if @var{obj} is an exception raised as the result of
2391attempting to lock a mutex that has been abandoned by its owner thread,
2392@code{#f} otherwise.
2393@end defun
2394
2395@defun terminated-thread-exception? obj
2396Returns @code{#t} if @var{obj} is an exception raised as the result of
2397joining on a thread that exited as the result of a call to
2398@code{thread-terminate!}.
2399@end defun
2400
2401@defun uncaught-exception? obj
2402@defunx uncaught-exception-reason exc
2403@code{uncaught-exception?} returns @code{#t} if @var{obj} is an
2404exception thrown as the result of joining a thread that exited by
2405raising an exception that was handled by the top-level exception
2406handler installed by @code{make-thread}. When this occurs, the
2407original exception is preserved as part of the exception thrown by
2408@code{thread-join!} and can be accessed by calling
2409@code{uncaught-exception-reason} on that exception. Note that
2410because this exception-preservation mechanism is a side-effect of
2411@code{make-thread}, joining on threads that exited as described above
2412but were created by other means will not raise this
2413@code{uncaught-exception} error.
2414@end defun
2415
2416
12991fed 2417@node SRFI-19
3229f68b 2418@subsection SRFI-19 - Time/Date Library
8742c48b 2419@cindex SRFI-19
7c2e18cd
KR
2420@cindex time
2421@cindex date
12991fed 2422
85600a0f
KR
2423This is an implementation of the SRFI-19 time/date library. The
2424functions and variables described here are provided by
12991fed
TTN
2425
2426@example
85600a0f 2427(use-modules (srfi srfi-19))
12991fed
TTN
2428@end example
2429
7d281fa5
KR
2430@strong{Caution}: The current code in this module incorrectly extends
2431the Gregorian calendar leap year rule back prior to the introduction
2432of those reforms in 1582 (or the appropriate year in various
2433countries). The Julian calendar was used prior to 1582, and there
2434were 10 days skipped for the reform, but the code doesn't implement
2435that.
2436
2437This will be fixed some time. Until then calculations for 1583
2438onwards are correct, but prior to that any day/month/year and day of
2439the week calculations are wrong.
2440
85600a0f
KR
2441@menu
2442* SRFI-19 Introduction::
2443* SRFI-19 Time::
2444* SRFI-19 Date::
2445* SRFI-19 Time/Date conversions::
2446* SRFI-19 Date to string::
2447* SRFI-19 String to date::
2448@end menu
12991fed 2449
85600a0f 2450@node SRFI-19 Introduction
3229f68b 2451@subsubsection SRFI-19 Introduction
85600a0f
KR
2452
2453@cindex universal time
2454@cindex atomic time
2455@cindex UTC
2456@cindex TAI
2457This module implements time and date representations and calculations,
2458in various time systems, including universal time (UTC) and atomic
2459time (TAI).
2460
2461For those not familiar with these time systems, TAI is based on a
2462fixed length second derived from oscillations of certain atoms. UTC
2463differs from TAI by an integral number of seconds, which is increased
2464or decreased at announced times to keep UTC aligned to a mean solar
2465day (the orbit and rotation of the earth are not quite constant).
2466
2467@cindex leap second
2468So far, only increases in the TAI
2469@tex
2470$\leftrightarrow$
2471@end tex
2472@ifnottex
2473<->
2474@end ifnottex
2475UTC difference have been needed. Such an increase is a ``leap
2476second'', an extra second of TAI introduced at the end of a UTC day.
2477When working entirely within UTC this is never seen, every day simply
2478has 86400 seconds. But when converting from TAI to a UTC date, an
2479extra 23:59:60 is present, where normally a day would end at 23:59:59.
2480Effectively the UTC second from 23:59:59 to 00:00:00 has taken two TAI
2481seconds.
2482
2483@cindex system clock
2484In the current implementation, the system clock is assumed to be UTC,
2485and a table of leap seconds in the code converts to TAI. See comments
2486in @file{srfi-19.scm} for how to update this table.
2487
2488@cindex julian day
2489@cindex modified julian day
2490Also, for those not familiar with the terminology, a @dfn{Julian Day}
2491is a real number which is a count of days and fraction of a day, in
2492UTC, starting from -4713-01-01T12:00:00Z, ie.@: midday Monday 1 Jan
7c2e18cd
KR
24934713 B.C. A @dfn{Modified Julian Day} is the same, but starting from
24941858-11-17T00:00:00Z, ie.@: midnight 17 November 1858 UTC. That time
2495is julian day 2400000.5.
85600a0f
KR
2496
2497@c The SRFI-1 spec says -4714-11-24T12:00:00Z (November 24, -4714 at
2498@c noon, UTC), but this is incorrect. It looks like it might have
2499@c arisen from the code incorrectly treating years a multiple of 100
7c2e18cd 2500@c but not 400 prior to 1582 as non-leap years, where instead the Julian
85600a0f
KR
2501@c calendar should be used so all multiples of 4 before 1582 are leap
2502@c years.
2503
2504
2505@node SRFI-19 Time
3229f68b 2506@subsubsection SRFI-19 Time
85600a0f
KR
2507@cindex time
2508
2509A @dfn{time} object has type, seconds and nanoseconds fields
2510representing a point in time starting from some epoch. This is an
2511arbitrary point in time, not just a time of day. Although times are
2512represented in nanoseconds, the actual resolution may be lower.
2513
2514The following variables hold the possible time types. For instance
2515@code{(current-time time-process)} would give the current CPU process
2516time.
2517
2518@defvar time-utc
2519Universal Coordinated Time (UTC).
2520@cindex UTC
2521@end defvar
12991fed 2522
85600a0f
KR
2523@defvar time-tai
2524International Atomic Time (TAI).
2525@cindex TAI
2526@end defvar
12991fed 2527
85600a0f
KR
2528@defvar time-monotonic
2529Monotonic time, meaning a monotonically increasing time starting from
2530an unspecified epoch.
12991fed 2531
85600a0f
KR
2532Note that in the current implementation @code{time-monotonic} is the
2533same as @code{time-tai}, and unfortunately is therefore affected by
2534adjustments to the system clock. Perhaps this will change in the
2535future.
2536@end defvar
12991fed 2537
85600a0f
KR
2538@defvar time-duration
2539A duration, meaning simply a difference between two times.
2540@end defvar
12991fed 2541
85600a0f
KR
2542@defvar time-process
2543CPU time spent in the current process, starting from when the process
2544began.
2545@cindex process time
2546@end defvar
12991fed 2547
85600a0f
KR
2548@defvar time-thread
2549CPU time spent in the current thread. Not currently implemented.
2550@cindex thread time
2551@end defvar
12991fed 2552
85600a0f
KR
2553@sp 1
2554@defun time? obj
2555Return @code{#t} if @var{obj} is a time object, or @code{#f} if not.
2556@end defun
2557
2558@defun make-time type nanoseconds seconds
2559Create a time object with the given @var{type}, @var{seconds} and
2560@var{nanoseconds}.
2561@end defun
2562
2563@defun time-type time
2564@defunx time-nanosecond time
2565@defunx time-second time
2566@defunx set-time-type! time type
2567@defunx set-time-nanosecond! time nsec
2568@defunx set-time-second! time sec
2569Get or set the type, seconds or nanoseconds fields of a time object.
2570
2571@code{set-time-type!} merely changes the field, it doesn't convert the
2572time value. For conversions, see @ref{SRFI-19 Time/Date conversions}.
2573@end defun
2574
2575@defun copy-time time
2576Return a new time object, which is a copy of the given @var{time}.
2577@end defun
2578
2579@defun current-time [type]
2580Return the current time of the given @var{type}. The default
2581@var{type} is @code{time-utc}.
2582
2583Note that the name @code{current-time} conflicts with the Guile core
e68f492a
JG
2584@code{current-time} function (@pxref{Time}) as well as the SRFI-18
2585@code{current-time} function (@pxref{SRFI-18 Time}). Applications
2586wanting to use more than one of these functions will need to refer to
2587them by different names.
85600a0f
KR
2588@end defun
2589
2590@defun time-resolution [type]
2591Return the resolution, in nanoseconds, of the given time @var{type}.
2592The default @var{type} is @code{time-utc}.
2593@end defun
2594
2595@defun time<=? t1 t2
2596@defunx time<? t1 t2
2597@defunx time=? t1 t2
2598@defunx time>=? t1 t2
2599@defunx time>? t1 t2
2600Return @code{#t} or @code{#f} according to the respective relation
2601between time objects @var{t1} and @var{t2}. @var{t1} and @var{t2}
2602must be the same time type.
2603@end defun
2604
2605@defun time-difference t1 t2
2606@defunx time-difference! t1 t2
2607Return a time object of type @code{time-duration} representing the
2608period between @var{t1} and @var{t2}. @var{t1} and @var{t2} must be
2609the same time type.
2610
2611@code{time-difference} returns a new time object,
2612@code{time-difference!} may modify @var{t1} to form its return.
2613@end defun
2614
2615@defun add-duration time duration
2616@defunx add-duration! time duration
2617@defunx subtract-duration time duration
2618@defunx subtract-duration! time duration
2619Return a time object which is @var{time} with the given @var{duration}
2620added or subtracted. @var{duration} must be a time object of type
2621@code{time-duration}.
2622
2623@code{add-duration} and @code{subtract-duration} return a new time
2624object. @code{add-duration!} and @code{subtract-duration!} may modify
2625the given @var{time} to form their return.
2626@end defun
2627
2628
2629@node SRFI-19 Date
3229f68b 2630@subsubsection SRFI-19 Date
85600a0f
KR
2631@cindex date
2632
2633A @dfn{date} object represents a date in the Gregorian calendar and a
2634time of day on that date in some timezone.
2635
2636The fields are year, month, day, hour, minute, second, nanoseconds and
2637timezone. A date object is immutable, its fields can be read but they
2638cannot be modified once the object is created.
2639
2640@defun date? obj
2641Return @code{#t} if @var{obj} is a date object, or @code{#f} if not.
2642@end defun
2643
2644@defun make-date nsecs seconds minutes hours date month year zone-offset
2645Create a new date object.
2646@c
2647@c FIXME: What can we say about the ranges of the values. The
2648@c current code looks it doesn't normalize, but expects then in their
2649@c usual range already.
2650@c
2651@end defun
2652
2653@defun date-nanosecond date
2654Nanoseconds, 0 to 999999999.
2655@end defun
2656
2657@defun date-second date
7c2e18cd
KR
2658Seconds, 0 to 59, or 60 for a leap second. 60 is never seen when working
2659entirely within UTC, it's only when converting to or from TAI.
85600a0f
KR
2660@end defun
2661
2662@defun date-minute date
2663Minutes, 0 to 59.
2664@end defun
2665
2666@defun date-hour date
2667Hour, 0 to 23.
2668@end defun
2669
2670@defun date-day date
2671Day of the month, 1 to 31 (or less, according to the month).
2672@end defun
2673
2674@defun date-month date
2675Month, 1 to 12.
2676@end defun
2677
2678@defun date-year date
7c2e18cd
KR
2679Year, eg.@: 2003. Dates B.C.@: are negative, eg.@: @math{-46} is 46
2680B.C. There is no year 0, year @math{-1} is followed by year 1.
85600a0f
KR
2681@end defun
2682
2683@defun date-zone-offset date
2684Time zone, an integer number of seconds east of Greenwich.
2685@end defun
2686
2687@defun date-year-day date
2688Day of the year, starting from 1 for 1st January.
2689@end defun
2690
2691@defun date-week-day date
2692Day of the week, starting from 0 for Sunday.
2693@end defun
2694
2695@defun date-week-number date dstartw
2696Week of the year, ignoring a first partial week. @var{dstartw} is the
2697day of the week which is taken to start a week, 0 for Sunday, 1 for
2698Monday, etc.
2699@c
2700@c FIXME: The spec doesn't say whether numbering starts at 0 or 1.
2701@c The code looks like it's 0, if that's the correct intention.
2702@c
2703@end defun
2704
2705@c The SRFI text doesn't actually give the default for tz-offset, but
2706@c the reference implementation has the local timezone and the
2707@c conversions functions all specify that, so it should be ok to
2708@c document it here.
2709@c
2710@defun current-date [tz-offset]
7c2e18cd
KR
2711Return a date object representing the current date/time, in UTC offset
2712by @var{tz-offset}. @var{tz-offset} is seconds east of Greenwich and
2713defaults to the local timezone.
85600a0f
KR
2714@end defun
2715
2716@defun current-julian-day
2717@cindex julian day
2718Return the current Julian Day.
2719@end defun
2720
2721@defun current-modified-julian-day
2722@cindex modified julian day
2723Return the current Modified Julian Day.
2724@end defun
2725
2726
2727@node SRFI-19 Time/Date conversions
3229f68b 2728@subsubsection SRFI-19 Time/Date conversions
7c2e18cd
KR
2729@cindex time conversion
2730@cindex date conversion
85600a0f
KR
2731
2732@defun date->julian-day date
2733@defunx date->modified-julian-day date
2734@defunx date->time-monotonic date
2735@defunx date->time-tai date
2736@defunx date->time-utc date
2737@end defun
2738@defun julian-day->date jdn [tz-offset]
2739@defunx julian-day->time-monotonic jdn
2740@defunx julian-day->time-tai jdn
2741@defunx julian-day->time-utc jdn
2742@end defun
2743@defun modified-julian-day->date jdn [tz-offset]
2744@defunx modified-julian-day->time-monotonic jdn
2745@defunx modified-julian-day->time-tai jdn
2746@defunx modified-julian-day->time-utc jdn
2747@end defun
2748@defun time-monotonic->date time [tz-offset]
2749@defunx time-monotonic->time-tai time
2750@defunx time-monotonic->time-tai! time
2751@defunx time-monotonic->time-utc time
2752@defunx time-monotonic->time-utc! time
2753@end defun
2754@defun time-tai->date time [tz-offset]
2755@defunx time-tai->julian-day time
2756@defunx time-tai->modified-julian-day time
2757@defunx time-tai->time-monotonic time
2758@defunx time-tai->time-monotonic! time
2759@defunx time-tai->time-utc time
2760@defunx time-tai->time-utc! time
2761@end defun
2762@defun time-utc->date time [tz-offset]
2763@defunx time-utc->julian-day time
2764@defunx time-utc->modified-julian-day time
2765@defunx time-utc->time-monotonic time
2766@defunx time-utc->time-monotonic! time
2767@defunx time-utc->time-tai time
2768@defunx time-utc->time-tai! time
2769@sp 1
2770Convert between dates, times and days of the respective types. For
2771instance @code{time-tai->time-utc} accepts a @var{time} object of type
2772@code{time-tai} and returns an object of type @code{time-utc}.
2773
85600a0f
KR
2774The @code{!} variants may modify their @var{time} argument to form
2775their return. The plain functions create a new object.
702e6e09
KR
2776
2777For conversions to dates, @var{tz-offset} is seconds east of
2778Greenwich. The default is the local timezone, at the given time, as
2779provided by the system, using @code{localtime} (@pxref{Time}).
2780
2781On 32-bit systems, @code{localtime} is limited to a 32-bit
2782@code{time_t}, so a default @var{tz-offset} is only available for
2783times between Dec 1901 and Jan 2038. For prior dates an application
2784might like to use the value in 1902, though some locations have zone
2785changes prior to that. For future dates an application might like to
2786assume today's rules extend indefinitely. But for correct daylight
2787savings transitions it will be necessary to take an offset for the
2788same day and time but a year in range and which has the same starting
2789weekday and same leap/non-leap (to support rules like last Sunday in
2790October).
85600a0f
KR
2791@end defun
2792
2793@node SRFI-19 Date to string
3229f68b 2794@subsubsection SRFI-19 Date to string
85600a0f 2795@cindex date to string
7c2e18cd 2796@cindex string, from date
85600a0f
KR
2797
2798@defun date->string date [format]
2799Convert a date to a string under the control of a format.
2800@var{format} should be a string containing @samp{~} escapes, which
2801will be expanded as per the following conversion table. The default
2802@var{format} is @samp{~c}, a locale-dependent date and time.
2803
2804Many of these conversion characters are the same as POSIX
2805@code{strftime} (@pxref{Time}), but there are some extras and some
2806variations.
2807
2808@multitable {MMMM} {MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM}
2809@item @nicode{~~} @tab literal ~
2810@item @nicode{~a} @tab locale abbreviated weekday, eg.@: @samp{Sun}
2811@item @nicode{~A} @tab locale full weekday, eg.@: @samp{Sunday}
2812@item @nicode{~b} @tab locale abbreviated month, eg.@: @samp{Jan}
2813@item @nicode{~B} @tab locale full month, eg.@: @samp{January}
2814@item @nicode{~c} @tab locale date and time, eg.@: @*
2815@samp{Fri Jul 14 20:28:42-0400 2000}
2816@item @nicode{~d} @tab day of month, zero padded, @samp{01} to @samp{31}
2817
2818@c Spec says d/m/y, reference implementation says m/d/y.
2819@c Apparently the reference code was the intention, but would like to
2820@c see an errata published for the spec before contradicting it here.
2821@c
2822@c @item @nicode{~D} @tab date @nicode{~d/~m/~y}
2823
2824@item @nicode{~e} @tab day of month, blank padded, @samp{ 1} to @samp{31}
2825@item @nicode{~f} @tab seconds and fractional seconds,
2826with locale decimal point, eg.@: @samp{5.2}
2827@item @nicode{~h} @tab same as @nicode{~b}
2828@item @nicode{~H} @tab hour, 24-hour clock, zero padded, @samp{00} to @samp{23}
2829@item @nicode{~I} @tab hour, 12-hour clock, zero padded, @samp{01} to @samp{12}
2830@item @nicode{~j} @tab day of year, zero padded, @samp{001} to @samp{366}
2831@item @nicode{~k} @tab hour, 24-hour clock, blank padded, @samp{ 0} to @samp{23}
2832@item @nicode{~l} @tab hour, 12-hour clock, blank padded, @samp{ 1} to @samp{12}
2833@item @nicode{~m} @tab month, zero padded, @samp{01} to @samp{12}
2834@item @nicode{~M} @tab minute, zero padded, @samp{00} to @samp{59}
2835@item @nicode{~n} @tab newline
2836@item @nicode{~N} @tab nanosecond, zero padded, @samp{000000000} to @samp{999999999}
2837@item @nicode{~p} @tab locale AM or PM
2838@item @nicode{~r} @tab time, 12 hour clock, @samp{~I:~M:~S ~p}
2839@item @nicode{~s} @tab number of full seconds since ``the epoch'' in UTC
2840@item @nicode{~S} @tab second, zero padded @samp{00} to @samp{60} @*
2841(usual limit is 59, 60 is a leap second)
2842@item @nicode{~t} @tab horizontal tab character
2843@item @nicode{~T} @tab time, 24 hour clock, @samp{~H:~M:~S}
2844@item @nicode{~U} @tab week of year, Sunday first day of week,
2845@samp{00} to @samp{52}
2846@item @nicode{~V} @tab week of year, Monday first day of week,
2847@samp{01} to @samp{53}
2848@item @nicode{~w} @tab day of week, 0 for Sunday, @samp{0} to @samp{6}
2849@item @nicode{~W} @tab week of year, Monday first day of week,
2850@samp{00} to @samp{52}
2851
2852@c The spec has ~x as an apparent duplicate of ~W, and ~X as a locale
2853@c date. The reference code has ~x as the locale date and ~X as a
2854@c locale time. The rule is apparently that the code should be
2855@c believed, but would like to see an errata for the spec before
2856@c contradicting it here.
2857@c
2858@c @item @nicode{~x} @tab week of year, Monday as first day of week,
2859@c @samp{00} to @samp{53}
2860@c @item @nicode{~X} @tab locale date, eg.@: @samp{07/31/00}
2861
2862@item @nicode{~y} @tab year, two digits, @samp{00} to @samp{99}
2863@item @nicode{~Y} @tab year, full, eg.@: @samp{2003}
2864@item @nicode{~z} @tab time zone, RFC-822 style
2865@item @nicode{~Z} @tab time zone symbol (not currently implemented)
2866@item @nicode{~1} @tab ISO-8601 date, @samp{~Y-~m-~d}
d6bd1826
IP
2867@item @nicode{~2} @tab ISO-8601 time+zone, @samp{~H:~M:~S~z}
2868@item @nicode{~3} @tab ISO-8601 time, @samp{~H:~M:~S}
2869@item @nicode{~4} @tab ISO-8601 date/time+zone, @samp{~Y-~m-~dT~H:~M:~S~z}
2870@item @nicode{~5} @tab ISO-8601 date/time, @samp{~Y-~m-~dT~H:~M:~S}
85600a0f
KR
2871@end multitable
2872@end defun
2873
2874Conversions @samp{~D}, @samp{~x} and @samp{~X} are not currently
2875described here, since the specification and reference implementation
2876differ.
2877
a2f00b9b
LC
2878Conversion is locale-dependent on systems that support it
2879(@pxref{Accessing Locale Information}). @xref{Locales,
2880@code{setlocale}}, for information on how to change the current
2881locale.
85600a0f
KR
2882
2883
2884@node SRFI-19 String to date
3229f68b 2885@subsubsection SRFI-19 String to date
85600a0f 2886@cindex string to date
7c2e18cd 2887@cindex date, from string
85600a0f
KR
2888
2889@c FIXME: Can we say what happens when an incomplete date is
679cceed 2890@c converted? I.e. fields left as 0, or what? The spec seems to be
85600a0f
KR
2891@c silent on this.
2892
2893@defun string->date input template
2894Convert an @var{input} string to a date under the control of a
2895@var{template} string. Return a newly created date object.
2896
2897Literal characters in @var{template} must match characters in
2898@var{input} and @samp{~} escapes must match the input forms described
2899in the table below. ``Skip to'' means characters up to one of the
2900given type are ignored, or ``no skip'' for no skipping. ``Read'' is
2901what's then read, and ``Set'' is the field affected in the date
2902object.
2903
2904For example @samp{~Y} skips input characters until a digit is reached,
2905at which point it expects a year and stores that to the year field of
2906the date.
2907
2908@multitable {MMMM} {@nicode{char-alphabetic?}} {MMMMMMMMMMMMMMMMMMMMMMMMM} {@nicode{date-zone-offset}}
2909@item
2910@tab Skip to
2911@tab Read
2912@tab Set
2913
2914@item @nicode{~~}
2915@tab no skip
2916@tab literal ~
2917@tab nothing
2918
2919@item @nicode{~a}
2920@tab @nicode{char-alphabetic?}
2921@tab locale abbreviated weekday name
2922@tab nothing
2923
2924@item @nicode{~A}
2925@tab @nicode{char-alphabetic?}
2926@tab locale full weekday name
2927@tab nothing
2928
2929@c Note that the SRFI spec says that ~b and ~B don't set anything,
2930@c but that looks like a mistake. The reference implementation sets
2931@c the month field, which seems sensible and is what we describe
2932@c here.
2933
2934@item @nicode{~b}
2935@tab @nicode{char-alphabetic?}
2936@tab locale abbreviated month name
2937@tab @nicode{date-month}
2938
2939@item @nicode{~B}
2940@tab @nicode{char-alphabetic?}
2941@tab locale full month name
2942@tab @nicode{date-month}
2943
2944@item @nicode{~d}
2945@tab @nicode{char-numeric?}
2946@tab day of month
2947@tab @nicode{date-day}
2948
2949@item @nicode{~e}
2950@tab no skip
2951@tab day of month, blank padded
2952@tab @nicode{date-day}
2953
2954@item @nicode{~h}
2955@tab same as @samp{~b}
2956
2957@item @nicode{~H}
2958@tab @nicode{char-numeric?}
2959@tab hour
2960@tab @nicode{date-hour}
2961
2962@item @nicode{~k}
2963@tab no skip
2964@tab hour, blank padded
2965@tab @nicode{date-hour}
2966
2967@item @nicode{~m}
2968@tab @nicode{char-numeric?}
2969@tab month
2970@tab @nicode{date-month}
2971
2972@item @nicode{~M}
2973@tab @nicode{char-numeric?}
2974@tab minute
2975@tab @nicode{date-minute}
2976
2977@item @nicode{~S}
2978@tab @nicode{char-numeric?}
2979@tab second
2980@tab @nicode{date-second}
2981
2982@item @nicode{~y}
2983@tab no skip
2984@tab 2-digit year
2985@tab @nicode{date-year} within 50 years
2986
2987@item @nicode{~Y}
2988@tab @nicode{char-numeric?}
2989@tab year
2990@tab @nicode{date-year}
2991
2992@item @nicode{~z}
2993@tab no skip
2994@tab time zone
2995@tab date-zone-offset
2996@end multitable
2997
2998Notice that the weekday matching forms don't affect the date object
2999returned, instead the weekday will be derived from the day, month and
3000year.
3001
a2f00b9b
LC
3002Conversion is locale-dependent on systems that support it
3003(@pxref{Accessing Locale Information}). @xref{Locales,
3004@code{setlocale}}, for information on how to change the current
3005locale.
85600a0f 3006@end defun
12991fed 3007
8e9af854
NL
3008@node SRFI-23
3009@subsection SRFI-23 - Error Reporting
3010@cindex SRFI-23
3011
3012The SRFI-23 @code{error} procedure is always available.
1de8c1ae 3013
b0b55bd6 3014@node SRFI-26
3229f68b 3015@subsection SRFI-26 - specializing parameters
1de8c1ae 3016@cindex SRFI-26
7c2e18cd
KR
3017@cindex parameter specialize
3018@cindex argument specialize
3019@cindex specialize parameter
1de8c1ae
KR
3020
3021This SRFI provides a syntax for conveniently specializing selected
3022parameters of a function. It can be used with,
3023
3024@example
3025(use-modules (srfi srfi-26))
3026@end example
3027
df0a1002
BT
3028@deffn {library syntax} cut slot1 slot2 @dots{}
3029@deffnx {library syntax} cute slot1 slot2 @dots{}
3030Return a new procedure which will make a call (@var{slot1} @var{slot2}
3031@dots{}) but with selected parameters specialized to given expressions.
1de8c1ae
KR
3032
3033An example will illustrate the idea. The following is a
3034specialization of @code{write}, sending output to
3035@code{my-output-port},
3036
3037@example
3038(cut write <> my-output-port)
3039@result{}
3040(lambda (obj) (write obj my-output-port))
3041@end example
3042
3043The special symbol @code{<>} indicates a slot to be filled by an
3044argument to the new procedure. @code{my-output-port} on the other
3045hand is an expression to be evaluated and passed, ie.@: it specializes
3046the behaviour of @code{write}.
3047
3048@table @nicode
3049@item <>
3050A slot to be filled by an argument from the created procedure.
3051Arguments are assigned to @code{<>} slots in the order they appear in
3052the @code{cut} form, there's no way to re-arrange arguments.
3053
3054The first argument to @code{cut} is usually a procedure (or expression
3055giving a procedure), but @code{<>} is allowed there too. For example,
3056
3057@example
3058(cut <> 1 2 3)
3059@result{}
3060(lambda (proc) (proc 1 2 3))
3061@end example
3062
3063@item <...>
3064A slot to be filled by all remaining arguments from the new procedure.
3065This can only occur at the end of a @code{cut} form.
3066
3067For example, a procedure taking a variable number of arguments like
3068@code{max} but in addition enforcing a lower bound,
3069
3070@example
3071(define my-lower-bound 123)
3072
3073(cut max my-lower-bound <...>)
3074@result{}
3075(lambda arglist (apply max my-lower-bound arglist))
3076@end example
3077@end table
3078
3079For @code{cut} the specializing expressions are evaluated each time
3080the new procedure is called. For @code{cute} they're evaluated just
3081once, when the new procedure is created. The name @code{cute} stands
3082for ``@code{cut} with evaluated arguments''. In all cases the
3083evaluations take place in an unspecified order.
3084
3085The following illustrates the difference between @code{cut} and
3086@code{cute},
3087
3088@example
3089(cut format <> "the time is ~s" (current-time))
3090@result{}
3091(lambda (port) (format port "the time is ~s" (current-time)))
3092
3093(cute format <> "the time is ~s" (current-time))
3094@result{}
3095(let ((val (current-time)))
3096 (lambda (port) (format port "the time is ~s" val))
3097@end example
3098
3099(There's no provision for a mixture of @code{cut} and @code{cute}
3100where some expressions would be evaluated every time but others
3101evaluated only once.)
3102
3103@code{cut} is really just a shorthand for the sort of @code{lambda}
3104forms shown in the above examples. But notice @code{cut} avoids the
3105need to name unspecialized parameters, and is more compact. Use in
3106functional programming style or just with @code{map}, @code{for-each}
3107or similar is typical.
3108
3109@example
3110(map (cut * 2 <>) '(1 2 3 4))
3111
3112(for-each (cut write <> my-port) my-list)
3113@end example
3114@end deffn
b0b55bd6 3115
56ec46a7
AR
3116@node SRFI-27
3117@subsection SRFI-27 - Sources of Random Bits
3118@cindex SRFI-27
3119
6e3d49a0
AR
3120This subsection is based on the
3121@uref{http://srfi.schemers.org/srfi-27/srfi-27.html, specification of
3122SRFI-27} written by Sebastian Egner.
3123
3124@c The copyright notice and license text of the SRFI-27 specification is
3125@c reproduced below:
56ec46a7
AR
3126
3127@c Copyright (C) Sebastian Egner (2002). All Rights Reserved.
3128
3129@c Permission is hereby granted, free of charge, to any person obtaining a
3130@c copy of this software and associated documentation files (the
3131@c "Software"), to deal in the Software without restriction, including
3132@c without limitation the rights to use, copy, modify, merge, publish,
3133@c distribute, sublicense, and/or sell copies of the Software, and to
3134@c permit persons to whom the Software is furnished to do so, subject to
3135@c the following conditions:
3136
3137@c The above copyright notice and this permission notice shall be included
3138@c in all copies or substantial portions of the Software.
3139
3140@c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
3141@c OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3142@c MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3143@c NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3144@c LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3145@c OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3146@c WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3147
56ec46a7
AR
3148This SRFI provides access to a (pseudo) random number generator; for
3149Guile's built-in random number facilities, which SRFI-27 is implemented
3150upon, @xref{Random}. With SRFI-27, random numbers are obtained from a
3151@emph{random source}, which encapsulates a random number generation
3152algorithm and its state.
3153
3154@menu
3155* SRFI-27 Default Random Source:: Obtaining random numbers
3156* SRFI-27 Random Sources:: Creating and manipulating random sources
3157* SRFI-27 Random Number Generators:: Obtaining random number generators
3158@end menu
3159
3160@node SRFI-27 Default Random Source
3161@subsubsection The Default Random Source
3162@cindex SRFI-27
3163
3164@defun random-integer n
3165Return a random number between zero (inclusive) and @var{n} (exclusive),
3166using the default random source. The numbers returned have a uniform
3167distribution.
3168@end defun
3169
3170@defun random-real
3171Return a random number in (0,1), using the default random source. The
3172numbers returned have a uniform distribution.
3173@end defun
3174
3175@defun default-random-source
3176A random source from which @code{random-integer} and @code{random-real}
3177have been derived using @code{random-source-make-integers} and
3178@code{random-source-make-reals} (@pxref{SRFI-27 Random Number Generators}
3179for those procedures). Note that an assignment to
3180@code{default-random-source} does not change @code{random-integer} or
3181@code{random-real}; it is also strongly recommended not to assign a new
3182value.
3183@end defun
3184
3185@node SRFI-27 Random Sources
3186@subsubsection Random Sources
3187@cindex SRFI-27
3188
3189@defun make-random-source
3190Create a new random source. The stream of random numbers obtained from
3191each random source created by this procedure will be identical, unless
3192its state is changed by one of the procedures below.
3193@end defun
3194
3195@defun random-source? object
3196Tests whether @var{object} is a random source. Random sources are a
3197disjoint type.
3198@end defun
3199
3200@defun random-source-randomize! source
3201Attempt to set the state of the random source to a truly random value.
3202The current implementation uses a seed based on the current system time.
3203@end defun
3204
3205@defun random-source-pseudo-randomize! source i j
3206Changes the state of the random source s into the initial state of the
3207(@var{i}, @var{j})-th independent random source, where @var{i} and
3208@var{j} are non-negative integers. This procedure provides a mechanism
3209to obtain a large number of independent random sources (usually all
3210derived from the same backbone generator), indexed by two integers. In
3211contrast to @code{random-source-randomize!}, this procedure is entirely
3212deterministic.
3213@end defun
3214
3215The state associated with a random state can be obtained an reinstated
3216with the following procedures:
3217
3218@defun random-source-state-ref source
3219@defunx random-source-state-set! source state
3220Get and set the state of a random source. No assumptions should be made
3221about the nature of the state object, besides it having an external
679cceed 3222representation (i.e.@: it can be passed to @code{write} and subsequently
56ec46a7
AR
3223@code{read} back).
3224@end defun
3225
3226@node SRFI-27 Random Number Generators
3227@subsubsection Obtaining random number generator procedures
3228@cindex SRFI-27
3229
3230@defun random-source-make-integers source
3231Obtains a procedure to generate random integers using the random source
3232@var{source}. The returned procedure takes a single argument @var{n},
3233which must be a positive integer, and returns the next uniformly
3234distributed random integer from the interval @{0, ..., @var{n}-1@} by
3235advancing the state of @var{source}.
3236
3237If an application obtains and uses several generators for the same
3238random source @var{source}, a call to any of these generators advances
3239the state of @var{source}. Hence, the generators do not produce the
3240same sequence of random integers each but rather share a state. This
3241also holds for all other types of generators derived from a fixed random
3242sources.
3243
3244While the SRFI text specifies that ``Implementations that support
3245concurrency make sure that the state of a generator is properly
3246advanced'', this is currently not the case in Guile's implementation of
3247SRFI-27, as it would cause a severe performance penalty. So in
3248multi-threaded programs, you either must perform locking on random
3249sources shared between threads yourself, or use different random sources
3250for multiple threads.
3251@end defun
3252
3253@defun random-source-make-reals source
3254@defunx random-source-make-reals source unit
3255Obtains a procedure to generate random real numbers @math{0 < x < 1}
3256using the random source @var{source}. The procedure rand is called
3257without arguments.
3258
3259The optional parameter @var{unit} determines the type of numbers being
3260produced by the returned procedure and the quantization of the output.
3261@var{unit} must be a number such that @math{0 < @var{unit} < 1}. The
3262numbers created by the returned procedure are of the same numerical type
3263as @var{unit} and the potential output values are spaced by at most
3264@var{unit}. One can imagine rand to create numbers as @var{x} *
3265@var{unit} where @var{x} is a random integer in @{1, ...,
3266floor(1/unit)-1@}. Note, however, that this need not be the way the
3267values are actually created and that the actual resolution of rand can
3268be much higher than unit. In case @var{unit} is absent it defaults to a
3269reasonably small value (related to the width of the mantissa of an
3270efficient number format).
3271@end defun
3272
cffa9bd6
CJY
3273@node SRFI-28
3274@subsection SRFI-28 - Basic Format Strings
3275@cindex SRFI-28
3276
3277SRFI-28 provides a basic @code{format} procedure that provides only
3278the @code{~a}, @code{~s}, @code{~%}, and @code{~~} format specifiers.
3279You can import this procedure by using:
3280
3281@lisp
3282(use-modules (srfi srfi-28))
3283@end lisp
3284
3285@deffn {Scheme Procedure} format message arg @dots{}
3286Returns a formatted message, using @var{message} as the format string,
3287which can contain the following format specifiers:
3288
3289@table @code
3290@item ~a
3291Insert the textual representation of the next @var{arg}, as if printed
3292by @code{display}.
3293
3294@item ~s
3295Insert the textual representation of the next @var{arg}, as if printed
3296by @code{write}.
3297
3298@item ~%
3299Insert a newline.
3300
3301@item ~~
3302Insert a tilde.
3303@end table
3304
3305This procedure is the same as calling @code{simple-format} (@pxref{Writing})
3306with @code{#f} as the destination.
3307@end deffn
3308
620c8965
LC
3309@node SRFI-30
3310@subsection SRFI-30 - Nested Multi-line Comments
3311@cindex SRFI-30
3312
3313Starting from version 2.0, Guile's @code{read} supports SRFI-30/R6RS
3314nested multi-line comments by default, @ref{Block Comments}.
3315
8638c417
RB
3316@node SRFI-31
3317@subsection SRFI-31 - A special form `rec' for recursive evaluation
3318@cindex SRFI-31
7c2e18cd 3319@cindex recursive expression
8638c417
RB
3320@findex rec
3321
3322SRFI-31 defines a special form that can be used to create
3323self-referential expressions more conveniently. The syntax is as
3324follows:
3325
3326@example
3327@group
3328<rec expression> --> (rec <variable> <expression>)
3329<rec expression> --> (rec (<variable>+) <body>)
3330@end group
3331@end example
3332
3333The first syntax can be used to create self-referential expressions,
3334for example:
3335
3336@lisp
3337 guile> (define tmp (rec ones (cons 1 (delay ones))))
3338@end lisp
3339
3340The second syntax can be used to create anonymous recursive functions:
3341
3342@lisp
3343 guile> (define tmp (rec (display-n item n)
3344 (if (positive? n)
3345 (begin (display n) (display-n (- n 1))))))
3346 guile> (tmp 42 3)
3347 424242
3348 guile>
3349@end lisp
12991fed 3350
eeadfda1 3351
f50ca8da
LC
3352@node SRFI-34
3353@subsection SRFI-34 - Exception handling for programs
3354
3355@cindex SRFI-34
3356Guile provides an implementation of
3357@uref{http://srfi.schemers.org/srfi-34/srfi-34.html, SRFI-34's exception
3358handling mechanisms} as an alternative to its own built-in mechanisms
3359(@pxref{Exceptions}). It can be made available as follows:
3360
3361@lisp
3362(use-modules (srfi srfi-34))
3363@end lisp
3364
3365@c FIXME: Document it.
3366
3367
3368@node SRFI-35
3369@subsection SRFI-35 - Conditions
3370
3371@cindex SRFI-35
3372@cindex conditions
3373@cindex exceptions
3374
3375@uref{http://srfi.schemers.org/srfi-35/srfi-35.html, SRFI-35} implements
3376@dfn{conditions}, a data structure akin to records designed to convey
3377information about exceptional conditions between parts of a program. It
3378is normally used in conjunction with SRFI-34's @code{raise}:
3379
3380@lisp
3381(raise (condition (&message
3382 (message "An error occurred"))))
3383@end lisp
3384
3385Users can define @dfn{condition types} containing arbitrary information.
3386Condition types may inherit from one another. This allows the part of
3387the program that handles (or ``catches'') conditions to get accurate
3388information about the exceptional condition that arose.
3389
3390SRFI-35 conditions are made available using:
3391
3392@lisp
3393(use-modules (srfi srfi-35))
3394@end lisp
3395
3396The procedures available to manipulate condition types are the
3397following:
3398
3399@deffn {Scheme Procedure} make-condition-type id parent field-names
3400Return a new condition type named @var{id}, inheriting from
3401@var{parent}, and with the fields whose names are listed in
3402@var{field-names}. @var{field-names} must be a list of symbols and must
3403not contain names already used by @var{parent} or one of its supertypes.
3404@end deffn
3405
3406@deffn {Scheme Procedure} condition-type? obj
3407Return true if @var{obj} is a condition type.
3408@end deffn
3409
3410Conditions can be created and accessed with the following procedures:
3411
3412@deffn {Scheme Procedure} make-condition type . field+value
3413Return a new condition of type @var{type} with fields initialized as
3414specified by @var{field+value}, a sequence of field names (symbols) and
3415values as in the following example:
3416
3417@lisp
1317062f 3418(let ((&ct (make-condition-type 'foo &condition '(a b c))))
f50ca8da
LC
3419 (make-condition &ct 'a 1 'b 2 'c 3))
3420@end lisp
3421
3422Note that all fields of @var{type} and its supertypes must be specified.
3423@end deffn
3424
df0a1002 3425@deffn {Scheme Procedure} make-compound-condition condition1 condition2 @dots{}
994d87be
BT
3426Return a new compound condition composed of @var{condition1}
3427@var{condition2} @enddots{}. The returned condition has the type of
3428each condition of condition1 condition2 @dots{} (per
3429@code{condition-has-type?}).
f50ca8da
LC
3430@end deffn
3431
3432@deffn {Scheme Procedure} condition-has-type? c type
3433Return true if condition @var{c} has type @var{type}.
3434@end deffn
3435
3436@deffn {Scheme Procedure} condition-ref c field-name
3437Return the value of the field named @var{field-name} from condition @var{c}.
3438
3439If @var{c} is a compound condition and several underlying condition
3440types contain a field named @var{field-name}, then the value of the
3441first such field is returned, using the order in which conditions were
64de6db5 3442passed to @code{make-compound-condition}.
f50ca8da
LC
3443@end deffn
3444
3445@deffn {Scheme Procedure} extract-condition c type
3446Return a condition of condition type @var{type} with the field values
3447specified by @var{c}.
3448
3449If @var{c} is a compound condition, extract the field values from the
3450subcondition belonging to @var{type} that appeared first in the call to
72b3aa56 3451@code{make-compound-condition} that created the condition.
f50ca8da
LC
3452@end deffn
3453
3454Convenience macros are also available to create condition types and
3455conditions.
3456
3457@deffn {library syntax} define-condition-type type supertype predicate field-spec...
3458Define a new condition type named @var{type} that inherits from
3459@var{supertype}. In addition, bind @var{predicate} to a type predicate
3460that returns true when passed a condition of type @var{type} or any of
3461its subtypes. @var{field-spec} must have the form @code{(field
3462accessor)} where @var{field} is the name of field of @var{type} and
3463@var{accessor} is the name of a procedure to access field @var{field} in
3464conditions of type @var{type}.
3465
3466The example below defines condition type @code{&foo}, inheriting from
3467@code{&condition} with fields @code{a}, @code{b} and @code{c}:
3468
3469@lisp
3470(define-condition-type &foo &condition
3471 foo-condition?
3472 (a foo-a)
3473 (b foo-b)
3474 (c foo-c))
3475@end lisp
3476@end deffn
3477
df0a1002
BT
3478@deffn {library syntax} condition type-field-binding1 type-field-binding2 @dots{}
3479Return a new condition or compound condition, initialized according to
3480@var{type-field-binding1} @var{type-field-binding2} @enddots{}. Each
3481@var{type-field-binding} must have the form @code{(type
3482field-specs...)}, where @var{type} is the name of a variable bound to a
3483condition type; each @var{field-spec} must have the form
3484@code{(field-name value)} where @var{field-name} is a symbol denoting
3485the field being initialized to @var{value}. As for
f50ca8da
LC
3486@code{make-condition}, all fields must be specified.
3487
3488The following example returns a simple condition:
3489
3490@lisp
3491(condition (&message (message "An error occurred")))
3492@end lisp
3493
3494The one below returns a compound condition:
3495
3496@lisp
3497(condition (&message (message "An error occurred"))
3498 (&serious))
3499@end lisp
3500@end deffn
3501
3502Finally, SRFI-35 defines a several standard condition types.
3503
3504@defvar &condition
3505This condition type is the root of all condition types. It has no
3506fields.
3507@end defvar
3508
3509@defvar &message
3510A condition type that carries a message describing the nature of the
3511condition to humans.
3512@end defvar
3513
3514@deffn {Scheme Procedure} message-condition? c
3515Return true if @var{c} is of type @code{&message} or one of its
3516subtypes.
3517@end deffn
3518
3519@deffn {Scheme Procedure} condition-message c
3520Return the message associated with message condition @var{c}.
3521@end deffn
3522
3523@defvar &serious
3524This type describes conditions serious enough that they cannot safely be
3525ignored. It has no fields.
3526@end defvar
3527
3528@deffn {Scheme Procedure} serious-condition? c
3529Return true if @var{c} is of type @code{&serious} or one of its
3530subtypes.
3531@end deffn
3532
3533@defvar &error
3534This condition describes errors, typically caused by something that has
3535gone wrong in the interaction of the program with the external world or
3536the user.
3537@end defvar
3538
3539@deffn {Scheme Procedure} error? c
3540Return true if @var{c} is of type @code{&error} or one of its subtypes.
3541@end deffn
3542
d4c38221
LC
3543@node SRFI-37
3544@subsection SRFI-37 - args-fold
3545@cindex SRFI-37
3546
3547This is a processor for GNU @code{getopt_long}-style program
3548arguments. It provides an alternative, less declarative interface
3549than @code{getopt-long} in @code{(ice-9 getopt-long)}
3550(@pxref{getopt-long,,The (ice-9 getopt-long) Module}). Unlike
3551@code{getopt-long}, it supports repeated options and any number of
3552short and long names per option. Access it with:
3553
3554@lisp
3555(use-modules (srfi srfi-37))
3556@end lisp
3557
3558@acronym{SRFI}-37 principally provides an @code{option} type and the
3559@code{args-fold} function. To use the library, create a set of
3560options with @code{option} and use it as a specification for invoking
3561@code{args-fold}.
3562
3563Here is an example of a simple argument processor for the typical
3564@samp{--version} and @samp{--help} options, which returns a backwards
3565list of files given on the command line:
3566
3567@lisp
3568(args-fold (cdr (program-arguments))
3569 (let ((display-and-exit-proc
3570 (lambda (msg)
3571 (lambda (opt name arg loads)
3572 (display msg) (quit)))))
3573 (list (option '(#\v "version") #f #f
3574 (display-and-exit-proc "Foo version 42.0\n"))
3575 (option '(#\h "help") #f #f
3576 (display-and-exit-proc
3577 "Usage: foo scheme-file ..."))))
3578 (lambda (opt name arg loads)
3579 (error "Unrecognized option `~A'" name))
3580 (lambda (op loads) (cons op loads))
3581 '())
3582@end lisp
3583
3584@deffn {Scheme Procedure} option names required-arg? optional-arg? processor
3585Return an object that specifies a single kind of program option.
3586
3587@var{names} is a list of command-line option names, and should consist of
3588characters for traditional @code{getopt} short options and strings for
3589@code{getopt_long}-style long options.
3590
3591@var{required-arg?} and @var{optional-arg?} are mutually exclusive;
3592one or both must be @code{#f}. If @var{required-arg?}, the option
3593must be followed by an argument on the command line, such as
3594@samp{--opt=value} for long options, or an error will be signalled.
3595If @var{optional-arg?}, an argument will be taken if available.
3596
3597@var{processor} is a procedure that takes at least 3 arguments, called
3598when @code{args-fold} encounters the option: the containing option
3599object, the name used on the command line, and the argument given for
3600the option (or @code{#f} if none). The rest of the arguments are
3601@code{args-fold} ``seeds'', and the @var{processor} should return
3602seeds as well.
3603@end deffn
3604
3605@deffn {Scheme Procedure} option-names opt
3606@deffnx {Scheme Procedure} option-required-arg? opt
3607@deffnx {Scheme Procedure} option-optional-arg? opt
3608@deffnx {Scheme Procedure} option-processor opt
3609Return the specified field of @var{opt}, an option object, as
3610described above for @code{option}.
3611@end deffn
3612
df0a1002
BT
3613@deffn {Scheme Procedure} args-fold args options unrecognized-option-proc operand-proc seed @dots{}
3614Process @var{args}, a list of program arguments such as that returned by
3615@code{(cdr (program-arguments))}, in order against @var{options}, a list
3616of option objects as described above. All functions called take the
3617``seeds'', or the last multiple-values as multiple arguments, starting
3618with @var{seed} @dots{}, and must return the new seeds. Return the
d4c38221
LC
3619final seeds.
3620
3621Call @code{unrecognized-option-proc}, which is like an option object's
3622processor, for any options not found in @var{options}.
3623
3624Call @code{operand-proc} with any items on the command line that are
3625not named options. This includes arguments after @samp{--}. It is
3626called with the argument in question, as well as the seeds.
3627@end deffn
3628
12708eeb
AR
3629@node SRFI-38
3630@subsection SRFI-38 - External Representation for Data With Shared Structure
3631@cindex SRFI-38
3632
3633This subsection is based on
3634@uref{http://srfi.schemers.org/srfi-38/srfi-38.html, the specification
3635of SRFI-38} written by Ray Dillinger.
3636
3637@c Copyright (C) Ray Dillinger 2003. All Rights Reserved.
3638
3639@c Permission is hereby granted, free of charge, to any person obtaining a
3640@c copy of this software and associated documentation files (the
3641@c "Software"), to deal in the Software without restriction, including
3642@c without limitation the rights to use, copy, modify, merge, publish,
3643@c distribute, sublicense, and/or sell copies of the Software, and to
3644@c permit persons to whom the Software is furnished to do so, subject to
3645@c the following conditions:
3646
3647@c The above copyright notice and this permission notice shall be included
3648@c in all copies or substantial portions of the Software.
3649
3650@c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
3651@c OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3652@c MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3653@c NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3654@c LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3655@c OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3656@c WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3657
3658This SRFI creates an alternative external representation for data
3659written and read using @code{write-with-shared-structure} and
3660@code{read-with-shared-structure}. It is identical to the grammar for
3661external representation for data written and read with @code{write} and
3662@code{read} given in section 7 of R5RS, except that the single
3663production
3664
3665@example
3666<datum> --> <simple datum> | <compound datum>
3667@end example
3668
3669is replaced by the following five productions:
3670
3671@example
3672<datum> --> <defining datum> | <nondefining datum> | <defined datum>
3673<defining datum> --> #<indexnum>=<nondefining datum>
3674<defined datum> --> #<indexnum>#
3675<nondefining datum> --> <simple datum> | <compound datum>
3676<indexnum> --> <digit 10>+
3677@end example
3678
3679@deffn {Scheme procedure} write-with-shared-structure obj
3680@deffnx {Scheme procedure} write-with-shared-structure obj port
3681@deffnx {Scheme procedure} write-with-shared-structure obj port optarg
3682
3683Writes an external representation of @var{obj} to the given port.
3684Strings that appear in the written representation are enclosed in
3685doublequotes, and within those strings backslash and doublequote
3686characters are escaped by backslashes. Character objects are written
3687using the @code{#\} notation.
3688
3689Objects which denote locations rather than values (cons cells, vectors,
3690and non-zero-length strings in R5RS scheme; also Guile's structs,
3691bytevectors and ports and hash-tables), if they appear at more than one
3692point in the data being written, are preceded by @samp{#@var{N}=} the
3693first time they are written and replaced by @samp{#@var{N}#} all
3694subsequent times they are written, where @var{N} is a natural number
3695used to identify that particular object. If objects which denote
3696locations occur only once in the structure, then
3697@code{write-with-shared-structure} must produce the same external
3698representation for those objects as @code{write}.
3699
3700@code{write-with-shared-structure} terminates in finite time and
3701produces a finite representation when writing finite data.
3702
3703@code{write-with-shared-structure} returns an unspecified value. The
3704@var{port} argument may be omitted, in which case it defaults to the
3705value returned by @code{(current-output-port)}. The @var{optarg}
3706argument may also be omitted. If present, its effects on the output and
3707return value are unspecified but @code{write-with-shared-structure} must
3708still write a representation that can be read by
3709@code{read-with-shared-structure}. Some implementations may wish to use
3710@var{optarg} to specify formatting conventions, numeric radixes, or
3711return values. Guile's implementation ignores @var{optarg}.
3712
3713For example, the code
3714
3715@lisp
3716(begin (define a (cons 'val1 'val2))
3717 (set-cdr! a a)
3718 (write-with-shared-structure a))
3719@end lisp
3720
3721should produce the output @code{#1=(val1 . #1#)}. This shows a cons
3722cell whose @code{cdr} contains itself.
3723
3724@end deffn
3725
3726@deffn {Scheme procedure} read-with-shared-structure
3727@deffnx {Scheme procedure} read-with-shared-structure port
3728
3729@code{read-with-shared-structure} converts the external representations
3730of Scheme objects produced by @code{write-with-shared-structure} into
3731Scheme objects. That is, it is a parser for the nonterminal
3732@samp{<datum>} in the augmented external representation grammar defined
3733above. @code{read-with-shared-structure} returns the next object
3734parsable from the given input port, updating @var{port} to point to the
3735first character past the end of the external representation of the
3736object.
3737
3738If an end-of-file is encountered in the input before any characters are
3739found that can begin an object, then an end-of-file object is returned.
3740The port remains open, and further attempts to read it (by
3741@code{read-with-shared-structure} or @code{read} will also return an
3742end-of-file object. If an end of file is encountered after the
3743beginning of an object's external representation, but the external
3744representation is incomplete and therefore not parsable, an error is
3745signalled.
3746
3747The @var{port} argument may be omitted, in which case it defaults to the
3748value returned by @code{(current-input-port)}. It is an error to read
3749from a closed port.
3750
3751@end deffn
d4c38221 3752
eeadfda1
KR
3753@node SRFI-39
3754@subsection SRFI-39 - Parameters
3755@cindex SRFI-39
eeadfda1 3756
99db1bc2
AW
3757This SRFI adds support for dynamically-scoped parameters. SRFI 39 is
3758implemented in the Guile core; there's no module needed to get SRFI-39
3759itself. Parameters are documented in @ref{Parameters}.
eeadfda1 3760
99db1bc2
AW
3761This module does export one extra function: @code{with-parameters*}.
3762This is a Guile-specific addition to the SRFI, similar to the core
3763@code{with-fluids*} (@pxref{Fluids and Dynamic States}).
eeadfda1
KR
3764
3765@defun with-parameters* param-list value-list thunk
3766Establish a new dynamic scope, as per @code{parameterize} above,
3767taking parameters from @var{param-list} and corresponding values from
64de6db5 3768@var{value-list}. A call @code{(@var{thunk})} is made in the new
eeadfda1
KR
3769scope and the result from that @var{thunk} is the return from
3770@code{with-parameters*}.
eeadfda1
KR
3771@end defun
3772
50d08cd8
CJY
3773@node SRFI-41
3774@subsection SRFI-41 - Streams
3775@cindex SRFI-41
3776
80b809f1
MW
3777This subsection is based on the
3778@uref{http://srfi.schemers.org/srfi-41/srfi-41.html, specification of
3779SRFI-41} by Philip L.@: Bewig.
3780
3781@c The copyright notice and license text of the SRFI-41 specification is
3782@c reproduced below:
3783
3784@c Copyright (C) Philip L. Bewig (2007). All Rights Reserved.
3785
3786@c Permission is hereby granted, free of charge, to any person obtaining a
3787@c copy of this software and associated documentation files (the
3788@c "Software"), to deal in the Software without restriction, including
3789@c without limitation the rights to use, copy, modify, merge, publish,
3790@c distribute, sublicense, and/or sell copies of the Software, and to
3791@c permit persons to whom the Software is furnished to do so, subject to
3792@c the following conditions:
3793
3794@c The above copyright notice and this permission notice shall be included
3795@c in all copies or substantial portions of the Software.
3796
3797@c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
3798@c OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3799@c MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3800@c NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
3801@c LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
3802@c OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
3803@c WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3804
3805@noindent
3806This SRFI implements streams, sometimes called lazy lists, a sequential
3807data structure containing elements computed only on demand. A stream is
3808either null or is a pair with a stream in its cdr. Since elements of a
3809stream are computed only when accessed, streams can be infinite. Once
3810computed, the value of a stream element is cached in case it is needed
3811again. SRFI-41 can be made available with:
3812
3813@example
3814(use-modules (srfi srfi-41))
3815@end example
3816
3817@menu
3818* SRFI-41 Stream Fundamentals::
3819* SRFI-41 Stream Primitives::
3820* SRFI-41 Stream Library::
3821@end menu
3822
3823@node SRFI-41 Stream Fundamentals
3824@subsubsection SRFI-41 Stream Fundamentals
3825
3826SRFI-41 Streams are based on two mutually-recursive abstract data types:
3827An object of the @code{stream} abstract data type is a promise that,
0ddf484d 3828when forced, is either @code{stream-null} or is an object of type
80b809f1
MW
3829@code{stream-pair}. An object of the @code{stream-pair} abstract data
3830type contains a @code{stream-car} and a @code{stream-cdr}, which must be
3831a @code{stream}. The essential feature of streams is the systematic
3832suspensions of the recursive promises between the two data types.
3833
3834The object stored in the @code{stream-car} of a @code{stream-pair} is a
3835promise that is forced the first time the @code{stream-car} is accessed;
3836its value is cached in case it is needed again. The object may have any
3837type, and different stream elements may have different types. If the
3838@code{stream-car} is never accessed, the object stored there is never
3839evaluated. Likewise, the @code{stream-cdr} is a promise to return a
3840stream, and is only forced on demand.
3841
3842@node SRFI-41 Stream Primitives
3843@subsubsection SRFI-41 Stream Primitives
3844
3845This library provides eight operators: constructors for
0ddf484d 3846@code{stream-null} and @code{stream-pair}s, type predicates for streams
80b809f1
MW
3847and the two kinds of streams, accessors for both fields of a
3848@code{stream-pair}, and a lambda that creates procedures that return
3849streams.
3850
4a0821a8 3851@defvr {Scheme Variable} stream-null
80b809f1 3852A promise that, when forced, is a single object, distinguishable from
0ddf484d 3853all other objects, that represents the null stream. @code{stream-null}
80b809f1 3854is immutable and unique.
4a0821a8 3855@end defvr
80b809f1
MW
3856
3857@deffn {Scheme Syntax} stream-cons object-expr stream-expr
3858Creates a newly-allocated stream containing a promise that, when forced,
3859is a @code{stream-pair} with @var{object-expr} in its @code{stream-car}
3860and @var{stream-expr} in its @code{stream-cdr}. Neither
3861@var{object-expr} nor @var{stream-expr} is evaluated when
3862@code{stream-cons} is called.
3863
3864Once created, a @code{stream-pair} is immutable; there is no
3865@code{stream-set-car!} or @code{stream-set-cdr!} that modifies an
3866existing stream-pair. There is no dotted-pair or improper stream as
3867with lists.
3868@end deffn
3869
3870@deffn {Scheme Procedure} stream? object
3871Returns true if @var{object} is a stream, otherwise returns false. If
3872@var{object} is a stream, its promise will not be forced. If
3873@code{(stream? obj)} returns true, then one of @code{(stream-null? obj)}
3874or @code{(stream-pair? obj)} will return true and the other will return
3875false.
3876@end deffn
3877
3878@deffn {Scheme Procedure} stream-null? object
3879Returns true if @var{object} is the distinguished null stream, otherwise
3880returns false. If @var{object} is a stream, its promise will be forced.
3881@end deffn
3882
3883@deffn {Scheme Procedure} stream-pair? object
3884Returns true if @var{object} is a @code{stream-pair} constructed by
3885@code{stream-cons}, otherwise returns false. If @var{object} is a
3886stream, its promise will be forced.
3887@end deffn
3888
3889@deffn {Scheme Procedure} stream-car stream
3890Returns the object stored in the @code{stream-car} of @var{stream}. An
3891error is signalled if the argument is not a @code{stream-pair}. This
3892causes the @var{object-expr} passed to @code{stream-cons} to be
3893evaluated if it had not yet been; the value is cached in case it is
3894needed again.
3895@end deffn
3896
3897@deffn {Scheme Procedure} stream-cdr stream
3898Returns the stream stored in the @code{stream-cdr} of @var{stream}. An
3899error is signalled if the argument is not a @code{stream-pair}.
3900@end deffn
3901
3902@deffn {Scheme Syntax} stream-lambda formals body @dots{}
3903Creates a procedure that returns a promise to evaluate the @var{body} of
3904the procedure. The last @var{body} expression to be evaluated must
3905yield a stream. As with normal @code{lambda}, @var{formals} may be a
3906single variable name, in which case all the formal arguments are
3907collected into a single list, or a list of variable names, which may be
3908null if there are no arguments, proper if there are an exact number of
3909arguments, or dotted if a fixed number of arguments is to be followed by
3910zero or more arguments collected into a list. @var{Body} must contain
3911at least one expression, and may contain internal definitions preceding
3912any expressions to be evaluated.
3913@end deffn
3914
3915@example
3916(define strm123
3917 (stream-cons 1
3918 (stream-cons 2
3919 (stream-cons 3
3920 stream-null))))
3921
3922(stream-car strm123) @result{} 1
3923(stream-car (stream-cdr strm123) @result{} 2
3924
3925(stream-pair?
3926 (stream-cdr
3927 (stream-cons (/ 1 0) stream-null))) @result{} #f
3928
3929(stream? (list 1 2 3)) @result{} #f
3930
3931(define iter
3932 (stream-lambda (f x)
3933 (stream-cons x (iter f (f x)))))
3934
3935(define nats (iter (lambda (x) (+ x 1)) 0))
3936
3937(stream-car (stream-cdr nats)) @result{} 1
3938
3939(define stream-add
3940 (stream-lambda (s1 s2)
3941 (stream-cons
3942 (+ (stream-car s1) (stream-car s2))
3943 (stream-add (stream-cdr s1)
3944 (stream-cdr s2)))))
3945
3946(define evens (stream-add nats nats))
3947
3948(stream-car evens) @result{} 0
3949(stream-car (stream-cdr evens)) @result{} 2
3950(stream-car (stream-cdr (stream-cdr evens))) @result{} 4
3951@end example
3952
3953@node SRFI-41 Stream Library
3954@subsubsection SRFI-41 Stream Library
3955
3956@deffn {Scheme Syntax} define-stream (name args @dots{}) body @dots{}
3957Creates a procedure that returns a stream, and may appear anywhere a
3958normal @code{define} may appear, including as an internal definition.
3959It may contain internal definitions of its own. The defined procedure
3960takes arguments in the same way as @code{stream-lambda}.
3961@code{define-stream} is syntactic sugar on @code{stream-lambda}; see
3962also @code{stream-let}, which is also a sugaring of
3963@code{stream-lambda}.
3964
3965A simple version of @code{stream-map} that takes only a single input
3966stream calls itself recursively:
3967
3968@example
3969(define-stream (stream-map proc strm)
3970 (if (stream-null? strm)
3971 stream-null
3972 (stream-cons
3973 (proc (stream-car strm))
3974 (stream-map proc (stream-cdr strm))))))
3975@end example
3976@end deffn
3977
3978@deffn {Scheme Procedure} list->stream list
3979Returns a newly-allocated stream containing the elements from
3980@var{list}.
3981@end deffn
3982
3983@deffn {Scheme Procedure} port->stream [port]
3984Returns a newly-allocated stream containing in its elements the
3985characters on the port. If @var{port} is not given it defaults to the
3986current input port. The returned stream has finite length and is
0ddf484d 3987terminated by @code{stream-null}.
80b809f1
MW
3988
3989It looks like one use of @code{port->stream} would be this:
3990
3991@example
3992(define s ;wrong!
3993 (with-input-from-file filename
3994 (lambda () (port->stream))))
3995@end example
3996
3997But that fails, because @code{with-input-from-file} is eager, and closes
3998the input port prematurely, before the first character is read. To read
3999a file into a stream, say:
4000
4001@example
4002(define-stream (file->stream filename)
4003 (let ((p (open-input-file filename)))
4004 (stream-let loop ((c (read-char p)))
4005 (if (eof-object? c)
4006 (begin (close-input-port p)
4007 stream-null)
4008 (stream-cons c
4009 (loop (read-char p)))))))
4010@end example
4011@end deffn
4012
4013@deffn {Scheme Syntax} stream object-expr @dots{}
4014Creates a newly-allocated stream containing in its elements the objects,
4015in order. The @var{object-expr}s are evaluated when they are accessed,
4016not when the stream is created. If no objects are given, as in
4017(stream), the null stream is returned. See also @code{list->stream}.
4018
4019@example
4020(define strm123 (stream 1 2 3))
4021
4022; (/ 1 0) not evaluated when stream is created
4023(define s (stream 1 (/ 1 0) -1))
4024@end example
4025@end deffn
4026
4027@deffn {Scheme Procedure} stream->list [n] stream
4028Returns a newly-allocated list containing in its elements the first
4029@var{n} items in @var{stream}. If @var{stream} has less than @var{n}
4030items, all the items in the stream will be included in the returned
4031list. If @var{n} is not given it defaults to infinity, which means that
4032unless @var{stream} is finite @code{stream->list} will never return.
4033
4034@example
4035(stream->list 10
4036 (stream-map (lambda (x) (* x x))
4037 (stream-from 0)))
4038 @result{} (0 1 4 9 16 25 36 49 64 81)
4039@end example
4040@end deffn
4041
4042@deffn {Scheme Procedure} stream-append stream @dots{}
4043Returns a newly-allocated stream containing in its elements those
4044elements contained in its input @var{stream}s, in order of input. If
4045any of the input streams is infinite, no elements of any of the
4046succeeding input streams will appear in the output stream. See also
4047@code{stream-concat}.
4048@end deffn
4049
4050@deffn {Scheme Procedure} stream-concat stream
4051Takes a @var{stream} consisting of one or more streams and returns a
4052newly-allocated stream containing all the elements of the input streams.
4053If any of the streams in the input @var{stream} is infinite, any
4054remaining streams in the input stream will never appear in the output
4055stream. See also @code{stream-append}.
4056@end deffn
4057
4058@deffn {Scheme Procedure} stream-constant object @dots{}
4059Returns a newly-allocated stream containing in its elements the
4060@var{object}s, repeating in succession forever.
4061
4062@example
4063(stream-constant 1) @result{} 1 1 1 @dots{}
4064(stream-constant #t #f) @result{} #t #f #t #f #t #f @dots{}
4065@end example
4066@end deffn
4067
4068@deffn {Scheme Procedure} stream-drop n stream
4069Returns the suffix of the input @var{stream} that starts at the next
4070element after the first @var{n} elements. The output stream shares
4071structure with the input @var{stream}; thus, promises forced in one
4072instance of the stream are also forced in the other instance of the
4073stream. If the input @var{stream} has less than @var{n} elements,
4074@code{stream-drop} returns the null stream. See also
4075@code{stream-take}.
4076@end deffn
4077
4078@deffn {Scheme Procedure} stream-drop-while pred stream
4079Returns the suffix of the input @var{stream} that starts at the first
4080element @var{x} for which @code{(pred x)} returns false. The output
4081stream shares structure with the input @var{stream}. See also
4082@code{stream-take-while}.
4083@end deffn
4084
4085@deffn {Scheme Procedure} stream-filter pred stream
4086Returns a newly-allocated stream that contains only those elements
4087@var{x} of the input @var{stream} which satisfy the predicate
4088@code{pred}.
4089
4090@example
4091(stream-filter odd? (stream-from 0))
4092 @result{} 1 3 5 7 9 @dots{}
4093@end example
4094@end deffn
4095
4096@deffn {Scheme Procedure} stream-fold proc base stream
4097Applies a binary procedure @var{proc} to @var{base} and the first
4098element of @var{stream} to compute a new @var{base}, then applies the
4099procedure to the new @var{base} and the next element of @var{stream} to
4100compute a succeeding @var{base}, and so on, accumulating a value that is
4101finally returned as the value of @code{stream-fold} when the end of the
4102stream is reached. @var{stream} must be finite, or @code{stream-fold}
4103will enter an infinite loop. See also @code{stream-scan}, which is
4104similar to @code{stream-fold}, but useful for infinite streams. For
4105readers familiar with other functional languages, this is a left-fold;
4106there is no corresponding right-fold, since right-fold relies on finite
4107streams that are fully-evaluated, in which case they may as well be
4108converted to a list.
4109@end deffn
4110
4111@deffn {Scheme Procedure} stream-for-each proc stream @dots{}
4112Applies @var{proc} element-wise to corresponding elements of the input
4113@var{stream}s for side-effects; it returns nothing.
4114@code{stream-for-each} stops as soon as any of its input streams is
4115exhausted.
4116@end deffn
4117
4118@deffn {Scheme Procedure} stream-from first [step]
4119Creates a newly-allocated stream that contains @var{first} as its first
4120element and increments each succeeding element by @var{step}. If
4121@var{step} is not given it defaults to 1. @var{first} and @var{step}
4122may be of any numeric type. @code{stream-from} is frequently useful as
4123a generator in @code{stream-of} expressions. See also
4124@code{stream-range} for a similar procedure that creates finite streams.
4125@end deffn
4126
4127@deffn {Scheme Procedure} stream-iterate proc base
4128Creates a newly-allocated stream containing @var{base} in its first
4129element and applies @var{proc} to each element in turn to determine the
4130succeeding element. See also @code{stream-unfold} and
4131@code{stream-unfolds}.
4132@end deffn
4133
4134@deffn {Scheme Procedure} stream-length stream
4135Returns the number of elements in the @var{stream}; it does not evaluate
4136its elements. @code{stream-length} may only be used on finite streams;
4137it enters an infinite loop with infinite streams.
4138@end deffn
4139
4140@deffn {Scheme Syntax} stream-let tag ((var expr) @dots{}) body @dots{}
4141Creates a local scope that binds each variable to the value of its
4142corresponding expression. It additionally binds @var{tag} to a
4143procedure which takes the bound variables as arguments and @var{body} as
4144its defining expressions, binding the @var{tag} with
4145@code{stream-lambda}. @var{tag} is in scope within body, and may be
4146called recursively. When the expanded expression defined by the
4147@code{stream-let} is evaluated, @code{stream-let} evaluates the
4148expressions in its @var{body} in an environment containing the
4149newly-bound variables, returning the value of the last expression
4150evaluated, which must yield a stream.
4151
4152@code{stream-let} provides syntactic sugar on @code{stream-lambda}, in
4153the same manner as normal @code{let} provides syntactic sugar on normal
4154@code{lambda}. However, unlike normal @code{let}, the @var{tag} is
4155required, not optional, because unnamed @code{stream-let} is
4156meaningless.
4157
4158For example, @code{stream-member} returns the first @code{stream-pair}
4159of the input @var{strm} with a @code{stream-car} @var{x} that satisfies
4160@code{(eql? obj x)}, or the null stream if @var{x} is not present in
4161@var{strm}.
4162
4163@example
4164(define-stream (stream-member eql? obj strm)
4165 (stream-let loop ((strm strm))
4166 (cond ((stream-null? strm) strm)
4167 ((eql? obj (stream-car strm)) strm)
4168 (else (loop (stream-cdr strm))))))
4169@end example
4170@end deffn
4171
4172@deffn {Scheme Procedure} stream-map proc stream @dots{}
4173Applies @var{proc} element-wise to corresponding elements of the input
4174@var{stream}s, returning a newly-allocated stream containing elements
4175that are the results of those procedure applications. The output stream
4176has as many elements as the minimum-length input stream, and may be
4177infinite.
4178@end deffn
4179
4180@deffn {Scheme Syntax} stream-match stream clause @dots{}
4181Provides pattern-matching for streams. The input @var{stream} is an
4182expression that evaluates to a stream. Clauses are of the form
4183@code{(pattern [fender] expression)}, consisting of a @var{pattern} that
4184matches a stream of a particular shape, an optional @var{fender} that
4185must succeed if the pattern is to match, and an @var{expression} that is
4186evaluated if the pattern matches. There are four types of patterns:
4187
4188@itemize @bullet
4189@item
4190() matches the null stream.
4191
4192@item
4193(@var{pat0} @var{pat1} @dots{}) matches a finite stream with length
4194exactly equal to the number of pattern elements.
4195
4196@item
4197(@var{pat0} @var{pat1} @dots{} @code{.} @var{pat-rest}) matches an
4198infinite stream, or a finite stream with length at least as great as the
4199number of pattern elements before the literal dot.
4200
4201@item
4202@var{pat} matches an entire stream. Should always appear last in the
4203list of clauses; it's not an error to appear elsewhere, but subsequent
4204clauses could never match.
4205@end itemize
4206
4207Each pattern element may be either:
4208
4209@itemize @bullet
4210@item
4211An identifier, which matches any stream element. Additionally, the
4212value of the stream element is bound to the variable named by the
4213identifier, which is in scope in the @var{fender} and @var{expression}
4214of the corresponding @var{clause}. Each identifier in a single pattern
4215must be unique.
4216
4217@item
4218A literal underscore (@code{_}), which matches any stream element but
4219creates no bindings.
4220@end itemize
4221
4222The @var{pattern}s are tested in order, left-to-right, until a matching
4223pattern is found; if @var{fender} is present, it must evaluate to a true
4224value for the match to be successful. Pattern variables are bound in
4225the corresponding @var{fender} and @var{expression}. Once the matching
4226@var{pattern} is found, the corresponding @var{expression} is evaluated
4227and returned as the result of the match. An error is signaled if no
4228pattern matches the input @var{stream}.
4229
4230@code{stream-match} is often used to distinguish null streams from
4231non-null streams, binding @var{head} and @var{tail}:
4232
4233@example
4234(define (len strm)
4235 (stream-match strm
4236 (() 0)
4237 ((head . tail) (+ 1 (len tail)))))
4238@end example
4239
4240Fenders can test the common case where two stream elements must be
4241identical; the @code{else} pattern is an identifier bound to the entire
4242stream, not a keyword as in @code{cond}.
4243
4244@example
4245(stream-match strm
4246 ((x y . _) (equal? x y) 'ok)
4247 (else 'error))
4248@end example
4249
4250A more complex example uses two nested matchers to match two different
4251stream arguments; @code{(stream-merge lt? . strms)} stably merges two or
4252more streams ordered by the @code{lt?} predicate:
4253
4254@example
4255(define-stream (stream-merge lt? . strms)
4256 (define-stream (merge xx yy)
4257 (stream-match xx (() yy) ((x . xs)
4258 (stream-match yy (() xx) ((y . ys)
4259 (if (lt? y x)
4260 (stream-cons y (merge xx ys))
4261 (stream-cons x (merge xs yy))))))))
4262 (stream-let loop ((strms strms))
4263 (cond ((null? strms) stream-null)
4264 ((null? (cdr strms)) (car strms))
4265 (else (merge (car strms)
4266 (apply stream-merge lt?
4267 (cdr strms)))))))
4268@end example
4269@end deffn
4270
4271@deffn {Scheme Syntax} stream-of expr clause @dots{}
4272Provides the syntax of stream comprehensions, which generate streams by
4273means of looping expressions. The result is a stream of objects of the
4274type returned by @var{expr}. There are four types of clauses:
4275
4276@itemize @bullet
4277@item
4278(@var{var} @code{in} @var{stream-expr}) loops over the elements of
4279@var{stream-expr}, in order from the start of the stream, binding each
4280element of the stream in turn to @var{var}. @code{stream-from} and
4281@code{stream-range} are frequently useful as generators for
4282@var{stream-expr}.
4283
4284@item
4285(@var{var} @code{is} @var{expr}) binds @var{var} to the value obtained
4286by evaluating @var{expr}.
4287
4288@item
4289(@var{pred} @var{expr}) includes in the output stream only those
4290elements @var{x} which satisfy the predicate @var{pred}.
4291@end itemize
4292
4293The scope of variables bound in the stream comprehension is the clauses
4294to the right of the binding clause (but not the binding clause itself)
4295plus the result expression.
4296
4297When two or more generators are present, the loops are processed as if
4298they are nested from left to right; that is, the rightmost generator
4299varies fastest. A consequence of this is that only the first generator
4300may be infinite and all subsequent generators must be finite. If no
4301generators are present, the result of a stream comprehension is a stream
4302containing the result expression; thus, @samp{(stream-of 1)} produces a
4303finite stream containing only the element 1.
4304
4305@example
4306(stream-of (* x x)
4307 (x in (stream-range 0 10))
4308 (even? x))
4309 @result{} 0 4 16 36 64
4310
4311(stream-of (list a b)
4312 (a in (stream-range 1 4))
4313 (b in (stream-range 1 3)))
4314 @result{} (1 1) (1 2) (2 1) (2 2) (3 1) (3 2)
4315
4316(stream-of (list i j)
4317 (i in (stream-range 1 5))
4318 (j in (stream-range (+ i 1) 5)))
4319 @result{} (1 2) (1 3) (1 4) (2 3) (2 4) (3 4)
4320@end example
4321@end deffn
4322
4323@deffn {Scheme Procedure} stream-range first past [step]
4324Creates a newly-allocated stream that contains @var{first} as its first
4325element and increments each succeeding element by @var{step}. The
4326stream is finite and ends before @var{past}, which is not an element of
4327the stream. If @var{step} is not given it defaults to 1 if @var{first}
4328is less than past and -1 otherwise. @var{first}, @var{past} and
4329@var{step} may be of any real numeric type. @code{stream-range} is
4330frequently useful as a generator in @code{stream-of} expressions. See
4331also @code{stream-from} for a similar procedure that creates infinite
4332streams.
4333
4334@example
4335(stream-range 0 10) @result{} 0 1 2 3 4 5 6 7 8 9
4336(stream-range 0 10 2) @result{} 0 2 4 6 8
4337@end example
4338
4339Successive elements of the stream are calculated by adding @var{step} to
4340@var{first}, so if any of @var{first}, @var{past} or @var{step} are
4341inexact, the length of the output stream may differ from
4342@code{(ceiling (- (/ (- past first) step) 1)}.
4343@end deffn
4344
4345@deffn {Scheme Procedure} stream-ref stream n
4346Returns the @var{n}th element of stream, counting from zero. An error
4347is signaled if @var{n} is greater than or equal to the length of stream.
4348
4349@example
4350(define (fact n)
4351 (stream-ref
4352 (stream-scan * 1 (stream-from 1))
4353 n))
4354@end example
4355@end deffn
4356
4357@deffn {Scheme Procedure} stream-reverse stream
4358Returns a newly-allocated stream containing the elements of the input
4359@var{stream} but in reverse order. @code{stream-reverse} may only be
4360used with finite streams; it enters an infinite loop with infinite
4361streams. @code{stream-reverse} does not force evaluation of the
4362elements of the stream.
4363@end deffn
4364
4365@deffn {Scheme Procedure} stream-scan proc base stream
4366Accumulates the partial folds of an input @var{stream} into a
4367newly-allocated output stream. The output stream is the @var{base}
4368followed by @code{(stream-fold proc base (stream-take i stream))} for
4369each of the first @var{i} elements of @var{stream}.
4370
4371@example
4372(stream-scan + 0 (stream-from 1))
4373 @result{} (stream 0 1 3 6 10 15 @dots{})
4374
4375(stream-scan * 1 (stream-from 1))
4376 @result{} (stream 1 1 2 6 24 120 @dots{})
4377@end example
4378@end deffn
4379
4380@deffn {Scheme Procedure} stream-take n stream
4381Returns a newly-allocated stream containing the first @var{n} elements
4382of the input @var{stream}. If the input @var{stream} has less than
4383@var{n} elements, so does the output stream. See also
4384@code{stream-drop}.
4385@end deffn
4386
4387@deffn {Scheme Procedure} stream-take-while pred stream
4388Takes a predicate and a @code{stream} and returns a newly-allocated
4389stream containing those elements @code{x} that form the maximal prefix
4390of the input stream which satisfy @var{pred}. See also
4391@code{stream-drop-while}.
4392@end deffn
4393
4394@deffn {Scheme Procedure} stream-unfold map pred gen base
4395The fundamental recursive stream constructor. It constructs a stream by
4396repeatedly applying @var{gen} to successive values of @var{base}, in the
4397manner of @code{stream-iterate}, then applying @var{map} to each of the
4398values so generated, appending each of the mapped values to the output
4399stream as long as @code{(pred? base)} returns a true value. See also
4400@code{stream-iterate} and @code{stream-unfolds}.
4401
4402The expression below creates the finite stream @samp{0 1 4 9 16 25 36 49
440364 81}. Initially the @var{base} is 0, which is less than 10, so
4404@var{map} squares the @var{base} and the mapped value becomes the first
4405element of the output stream. Then @var{gen} increments the @var{base}
4406by 1, so it becomes 1; this is less than 10, so @var{map} squares the
4407new @var{base} and 1 becomes the second element of the output stream.
4408And so on, until the base becomes 10, when @var{pred} stops the
4409recursion and stream-null ends the output stream.
4410
4411@example
4412(stream-unfold
4413 (lambda (x) (expt x 2)) ; map
4414 (lambda (x) (< x 10)) ; pred?
4415 (lambda (x) (+ x 1)) ; gen
4416 0) ; base
4417@end example
4418@end deffn
4419
4420@deffn {Scheme Procedure} stream-unfolds proc seed
4421Returns @var{n} newly-allocated streams containing those elements
4422produced by successive calls to the generator @var{proc}, which takes
4423the current @var{seed} as its argument and returns @var{n}+1 values
4424
4425(@var{proc} @var{seed}) @result{} @var{seed} @var{result_0} @dots{} @var{result_n-1}
4426
4427where the returned @var{seed} is the input @var{seed} to the next call
4428to the generator and @var{result_i} indicates how to produce the next
4429element of the @var{i}th result stream:
4430
4431@itemize @bullet
4432@item
4433(@var{value}): @var{value} is the next car of the result stream.
4434
4435@item
4436@code{#f}: no value produced by this iteration of the generator
4437@var{proc} for the result stream.
4438
4439@item
4440(): the end of the result stream.
4441@end itemize
4442
4443It may require multiple calls of @var{proc} to produce the next element
4444of any particular result stream. See also @code{stream-iterate} and
4445@code{stream-unfold}.
4446
4447@example
4448(define (stream-partition pred? strm)
4449 (stream-unfolds
4450 (lambda (s)
4451 (if (stream-null? s)
4452 (values s '() '())
4453 (let ((a (stream-car s))
4454 (d (stream-cdr s)))
4455 (if (pred? a)
4456 (values d (list a) #f)
4457 (values d #f (list a))))))
4458 strm))
4459
4460(call-with-values
4461 (lambda ()
4462 (stream-partition odd?
4463 (stream-range 1 6)))
4464 (lambda (odds evens)
4465 (list (stream->list odds)
4466 (stream->list evens))))
4467 @result{} ((1 3 5) (2 4))
4468@end example
4469@end deffn
4470
4471@deffn {Scheme Procedure} stream-zip stream @dots{}
4472Returns a newly-allocated stream in which each element is a list (not a
4473stream) of the corresponding elements of the input @var{stream}s. The
4474output stream is as long as the shortest input @var{stream}, if any of
4475the input @var{stream}s is finite, or is infinite if all the input
4476@var{stream}s are infinite.
4477@end deffn
50d08cd8 4478
fdc8fd46
AR
4479@node SRFI-42
4480@subsection SRFI-42 - Eager Comprehensions
4481@cindex SRFI-42
4482
4483See @uref{http://srfi.schemers.org/srfi-42/srfi-42.html, the
4484specification of SRFI-42}.
eeadfda1 4485
9060dc29
MW
4486@node SRFI-43
4487@subsection SRFI-43 - Vector Library
4488@cindex SRFI-43
4489
4490This subsection is based on the
4491@uref{http://srfi.schemers.org/srfi-43/srfi-43.html, specification of
4492SRFI-43} by Taylor Campbell.
4493
4494@c The copyright notice and license text of the SRFI-43 specification is
4495@c reproduced below:
4496
4497@c Copyright (C) Taylor Campbell (2003). All Rights Reserved.
4498
4499@c Permission is hereby granted, free of charge, to any person obtaining a
4500@c copy of this software and associated documentation files (the
4501@c "Software"), to deal in the Software without restriction, including
4502@c without limitation the rights to use, copy, modify, merge, publish,
4503@c distribute, sublicense, and/or sell copies of the Software, and to
4504@c permit persons to whom the Software is furnished to do so, subject to
4505@c the following conditions:
4506
4507@c The above copyright notice and this permission notice shall be included
4508@c in all copies or substantial portions of the Software.
4509
4510@c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
4511@c OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4512@c MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
4513@c NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
4514@c LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
4515@c OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
4516@c WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4517
4518@noindent
4519SRFI-43 implements a comprehensive library of vector operations. It can
4520be made available with:
4521
4522@example
4523(use-modules (srfi srfi-43))
4524@end example
4525
4526@menu
4527* SRFI-43 Constructors::
4528* SRFI-43 Predicates::
4529* SRFI-43 Selectors::
4530* SRFI-43 Iteration::
4531* SRFI-43 Searching::
4532* SRFI-43 Mutators::
4533* SRFI-43 Conversion::
4534@end menu
4535
4536@node SRFI-43 Constructors
4537@subsubsection SRFI-43 Constructors
4538
4539@deffn {Scheme Procedure} make-vector size [fill]
4540Create and return a vector of size @var{size}, optionally filling it
4541with @var{fill}. The default value of @var{fill} is unspecified.
4542
4543@example
4544(make-vector 5 3) @result{} #(3 3 3 3 3)
4545@end example
4546@end deffn
4547
4548@deffn {Scheme Procedure} vector x @dots{}
4549Create and return a vector whose elements are @var{x} @enddots{}.
4550
4551@example
4552(vector 0 1 2 3 4) @result{} #(0 1 2 3 4)
4553@end example
4554@end deffn
4555
4556@deffn {Scheme Procedure} vector-unfold f length initial-seed @dots{}
ff4af3df
MW
4557The fundamental vector constructor. Create a vector whose length
4558is @var{length} and iterates across each index k from 0 up to
4559@var{length} - 1, applying @var{f} at each iteration to the current
4560index and current seeds, in that order, to receive n + 1 values: the
4561element to put in the kth slot of the new vector, and n new seeds for
9060dc29
MW
4562the next iteration. It is an error for the number of seeds to vary
4563between iterations.
4564
4565@example
4566(vector-unfold (lambda (i x) (values x (- x 1)))
4567 10 0)
4568@result{} #(0 -1 -2 -3 -4 -5 -6 -7 -8 -9)
4569
4570(vector-unfold values 10)
4571@result{} #(0 1 2 3 4 5 6 7 8 9)
4572@end example
4573@end deffn
4574
4575@deffn {Scheme Procedure} vector-unfold-right f length initial-seed @dots{}
4576Like @code{vector-unfold}, but it uses @var{f} to generate elements from
4577right-to-left, rather than left-to-right.
4578
4579@example
4580(vector-unfold-right (lambda (i x) (values x (+ x 1)))
4581 10 0)
4582@result{} #(9 8 7 6 5 4 3 2 1 0)
4583@end example
4584@end deffn
4585
4586@deffn {Scheme Procedure} vector-copy vec [start [end [fill]]]
4587Allocate a new vector whose length is @var{end} - @var{start} and fills
4588it with elements from @var{vec}, taking elements from @var{vec} starting
4589at index @var{start} and stopping at index @var{end}. @var{start}
4590defaults to 0 and @var{end} defaults to the value of
4591@code{(vector-length vec)}. If @var{end} extends beyond the length of
4592@var{vec}, the slots in the new vector that obviously cannot be filled
4593by elements from @var{vec} are filled with @var{fill}, whose default
4594value is unspecified.
4595
4596@example
4597(vector-copy '#(a b c d e f g h i))
4598@result{} #(a b c d e f g h i)
4599
4600(vector-copy '#(a b c d e f g h i) 6)
4601@result{} #(g h i)
4602
4603(vector-copy '#(a b c d e f g h i) 3 6)
4604@result{} #(d e f)
4605
4606(vector-copy '#(a b c d e f g h i) 6 12 'x)
4607@result{} #(g h i x x x)
4608@end example
4609@end deffn
4610
4611@deffn {Scheme Procedure} vector-reverse-copy vec [start [end]]
4612Like @code{vector-copy}, but it copies the elements in the reverse order
4613from @var{vec}.
4614
4615@example
4616(vector-reverse-copy '#(5 4 3 2 1 0) 1 5)
4617@result{} #(1 2 3 4)
4618@end example
4619@end deffn
4620
4621@deffn {Scheme Procedure} vector-append vec @dots{}
4622Return a newly allocated vector that contains all elements in order from
4623the subsequent locations in @var{vec} @enddots{}.
4624
4625@example
4626(vector-append '#(a) '#(b c d))
4627@result{} #(a b c d)
4628@end example
4629@end deffn
4630
4631@deffn {Scheme Procedure} vector-concatenate list-of-vectors
4632Append each vector in @var{list-of-vectors}. Equivalent to
4633@code{(apply vector-append list-of-vectors)}.
4634
4635@example
4636(vector-concatenate '(#(a b) #(c d)))
4637@result{} #(a b c d)
4638@end example
4639@end deffn
4640
4641@node SRFI-43 Predicates
4642@subsubsection SRFI-43 Predicates
4643
4644@deffn {Scheme Procedure} vector? obj
4645Return true if @var{obj} is a vector, else return false.
4646@end deffn
4647
4648@deffn {Scheme Procedure} vector-empty? vec
4649Return true if @var{vec} is empty, i.e. its length is 0, else return
4650false.
4651@end deffn
4652
4653@deffn {Scheme Procedure} vector= elt=? vec @dots{}
4654Return true if the vectors @var{vec} @dots{} have equal lengths and
4655equal elements according to @var{elt=?}. @var{elt=?} is always applied
4656to two arguments. Element comparison must be consistent with @code{eq?}
4657in the following sense: if @code{(eq? a b)} returns true, then
4658@code{(elt=? a b)} must also return true. The order in which
4659comparisons are performed is unspecified.
4660@end deffn
4661
4662@node SRFI-43 Selectors
4663@subsubsection SRFI-43 Selectors
4664
4665@deffn {Scheme Procedure} vector-ref vec i
2b509a2e
MW
4666Return the element at index @var{i} in @var{vec}. Indexing is based on
4667zero.
9060dc29
MW
4668@end deffn
4669
4670@deffn {Scheme Procedure} vector-length vec
4671Return the length of @var{vec}.
4672@end deffn
4673
4674@node SRFI-43 Iteration
4675@subsubsection SRFI-43 Iteration
4676
4677@deffn {Scheme Procedure} vector-fold kons knil vec1 vec2 @dots{}
4678The fundamental vector iterator. @var{kons} is iterated over each index
4679in all of the vectors, stopping at the end of the shortest; @var{kons}
4680is applied as
4681@smalllisp
4682(kons i state (vector-ref vec1 i) (vector-ref vec2 i) ...)
4683@end smalllisp
4684where @var{state} is the current state value, and @var{i} is the current
4685index. The current state value begins with @var{knil}, and becomes
4686whatever @var{kons} returned at the respective iteration. The iteration
4687is strictly left-to-right.
4688@end deffn
4689
4690@deffn {Scheme Procedure} vector-fold-right kons knil vec1 vec2 @dots{}
4691Similar to @code{vector-fold}, but it iterates right-to-left instead of
4692left-to-right.
4693@end deffn
4694
4695@deffn {Scheme Procedure} vector-map f vec1 vec2 @dots{}
4696Return a new vector of the shortest size of the vector arguments. Each
4697element at index i of the new vector is mapped from the old vectors by
4698@smalllisp
4699(f i (vector-ref vec1 i) (vector-ref vec2 i) ...)
4700@end smalllisp
4701The dynamic order of application of @var{f} is unspecified.
4702@end deffn
4703
4704@deffn {Scheme Procedure} vector-map! f vec1 vec2 @dots{}
4705Similar to @code{vector-map}, but rather than mapping the new elements
4706into a new vector, the new mapped elements are destructively inserted
4707into @var{vec1}. The dynamic order of application of @var{f} is
4708unspecified.
4709@end deffn
4710
4711@deffn {Scheme Procedure} vector-for-each f vec1 vec2 @dots{}
4712Call @code{(f i (vector-ref vec1 i) (vector-ref vec2 i) ...)} for each
4713index i less than the length of the shortest vector passed. The
4714iteration is strictly left-to-right.
4715@end deffn
4716
4717@deffn {Scheme Procedure} vector-count pred? vec1 vec2 @dots{}
4718Count the number of parallel elements in the vectors that satisfy
4719@var{pred?}, which is applied, for each index i less than the length of
4720the smallest vector, to i and each parallel element in the vectors at
4721that index, in order.
4722
4723@example
4724(vector-count (lambda (i elt) (even? elt))
4725 '#(3 1 4 1 5 9 2 5 6))
4726@result{} 3
4727(vector-count (lambda (i x y) (< x y))
4728 '#(1 3 6 9) '#(2 4 6 8 10 12))
4729@result{} 2
4730@end example
4731@end deffn
4732
4733@node SRFI-43 Searching
4734@subsubsection SRFI-43 Searching
4735
4736@deffn {Scheme Procedure} vector-index pred? vec1 vec2 @dots{}
4737Find and return the index of the first elements in @var{vec1} @var{vec2}
4738@dots{} that satisfy @var{pred?}. If no matching element is found by
4739the end of the shortest vector, return @code{#f}.
4740
4741@example
4742(vector-index even? '#(3 1 4 1 5 9))
4743@result{} 2
4744(vector-index < '#(3 1 4 1 5 9 2 5 6) '#(2 7 1 8 2))
4745@result{} 1
4746(vector-index = '#(3 1 4 1 5 9 2 5 6) '#(2 7 1 8 2))
4747@result{} #f
4748@end example
4749@end deffn
4750
4751@deffn {Scheme Procedure} vector-index-right pred? vec1 vec2 @dots{}
4752Like @code{vector-index}, but it searches right-to-left, rather than
4753left-to-right. Note that the SRFI 43 specification requires that all
4754the vectors must have the same length, but both the SRFI 43 reference
4755implementation and Guile's implementation allow vectors with unequal
4756lengths, and start searching from the last index of the shortest vector.
4757@end deffn
4758
4759@deffn {Scheme Procedure} vector-skip pred? vec1 vec2 @dots{}
4760Find and return the index of the first elements in @var{vec1} @var{vec2}
4761@dots{} that do not satisfy @var{pred?}. If no matching element is
4762found by the end of the shortest vector, return @code{#f}. Equivalent
4763to @code{vector-index} but with the predicate inverted.
4764
4765@example
4766(vector-skip number? '#(1 2 a b 3 4 c d)) @result{} 2
4767@end example
4768@end deffn
4769
4770@deffn {Scheme Procedure} vector-skip-right pred? vec1 vec2 @dots{}
4771Like @code{vector-skip}, but it searches for a non-matching element
4772right-to-left, rather than left-to-right. Note that the SRFI 43
4773specification requires that all the vectors must have the same length,
4774but both the SRFI 43 reference implementation and Guile's implementation
4775allow vectors with unequal lengths, and start searching from the last
4776index of the shortest vector.
4777@end deffn
4778
4779@deffn {Scheme Procedure} vector-binary-search vec value cmp [start [end]]
4780Find and return an index of @var{vec} between @var{start} and @var{end}
4781whose value is @var{value} using a binary search. If no matching
4782element is found, return @code{#f}. The default @var{start} is 0 and
4783the default @var{end} is the length of @var{vec}.
4784
4785@var{cmp} must be a procedure of two arguments such that @code{(cmp a
4786b)} returns a negative integer if @math{a < b}, a positive integer if
4787@math{a > b}, or zero if @math{a = b}. The elements of @var{vec} must
4788be sorted in non-decreasing order according to @var{cmp}.
4789
4790Note that SRFI 43 does not document the @var{start} and @var{end}
4791arguments, but both its reference implementation and Guile's
4792implementation support them.
4793
4794@example
4795(define (char-cmp c1 c2)
4796 (cond ((char<? c1 c2) -1)
4797 ((char>? c1 c2) 1)
4798 (else 0)))
4799
4800(vector-binary-search '#(#\a #\b #\c #\d #\e #\f #\g #\h)
4801 #\g
4802 char-cmp)
4803@result{} 6
4804@end example
4805@end deffn
4806
4807@deffn {Scheme Procedure} vector-any pred? vec1 vec2 @dots{}
4808Find the first parallel set of elements from @var{vec1} @var{vec2}
4809@dots{} for which @var{pred?} returns a true value. If such a parallel
4810set of elements exists, @code{vector-any} returns the value that
4811@var{pred?} returned for that set of elements. The iteration is
4812strictly left-to-right.
4813@end deffn
4814
4815@deffn {Scheme Procedure} vector-every pred? vec1 vec2 @dots{}
4816If, for every index i between 0 and the length of the shortest vector
4817argument, the set of elements @code{(vector-ref vec1 i)}
4818@code{(vector-ref vec2 i)} @dots{} satisfies @var{pred?},
4819@code{vector-every} returns the value that @var{pred?} returned for the
4820last set of elements, at the last index of the shortest vector.
4821Otherwise it returns @code{#f}. The iteration is strictly
4822left-to-right.
4823@end deffn
4824
4825@node SRFI-43 Mutators
4826@subsubsection SRFI-43 Mutators
4827
4828@deffn {Scheme Procedure} vector-set! vec i value
4829Assign the contents of the location at @var{i} in @var{vec} to
4830@var{value}.
4831@end deffn
4832
4833@deffn {Scheme Procedure} vector-swap! vec i j
4834Swap the values of the locations in @var{vec} at @var{i} and @var{j}.
4835@end deffn
4836
4837@deffn {Scheme Procedure} vector-fill! vec fill [start [end]]
4838Assign the value of every location in @var{vec} between @var{start} and
4839@var{end} to @var{fill}. @var{start} defaults to 0 and @var{end}
4840defaults to the length of @var{vec}.
4841@end deffn
4842
4843@deffn {Scheme Procedure} vector-reverse! vec [start [end]]
4844Destructively reverse the contents of @var{vec} between @var{start} and
4845@var{end}. @var{start} defaults to 0 and @var{end} defaults to the
4846length of @var{vec}.
4847@end deffn
4848
4849@deffn {Scheme Procedure} vector-copy! target tstart source [sstart [send]]
4850Copy a block of elements from @var{source} to @var{target}, both of
4851which must be vectors, starting in @var{target} at @var{tstart} and
4852starting in @var{source} at @var{sstart}, ending when (@var{send} -
4853@var{sstart}) elements have been copied. It is an error for
4854@var{target} to have a length less than (@var{tstart} + @var{send} -
4855@var{sstart}). @var{sstart} defaults to 0 and @var{send} defaults to
4856the length of @var{source}.
4857@end deffn
4858
4859@deffn {Scheme Procedure} vector-reverse-copy! target tstart source [sstart [send]]
4860Like @code{vector-copy!}, but this copies the elements in the reverse
4861order. It is an error if @var{target} and @var{source} are identical
4862vectors and the @var{target} and @var{source} ranges overlap; however,
4863if @var{tstart} = @var{sstart}, @code{vector-reverse-copy!} behaves as
4864@code{(vector-reverse! target tstart send)} would.
4865@end deffn
4866
4867@node SRFI-43 Conversion
4868@subsubsection SRFI-43 Conversion
4869
4870@deffn {Scheme Procedure} vector->list vec [start [end]]
4871Return a newly allocated list containing the elements in @var{vec}
4872between @var{start} and @var{end}. @var{start} defaults to 0 and
4873@var{end} defaults to the length of @var{vec}.
4874@end deffn
4875
4876@deffn {Scheme Procedure} reverse-vector->list vec [start [end]]
4877Like @code{vector->list}, but the resulting list contains the specified
4878range of elements of @var{vec} in reverse order.
4879@end deffn
4880
4881@deffn {Scheme Procedure} list->vector proper-list [start [end]]
4882Return a newly allocated vector of the elements from @var{proper-list}
4883with indices between @var{start} and @var{end}. @var{start} defaults to
48840 and @var{end} defaults to the length of @var{proper-list}. Note that
4885SRFI 43 does not document the @var{start} and @var{end} arguments, but
4886both its reference implementation and Guile's implementation support
4887them.
4888@end deffn
4889
4890@deffn {Scheme Procedure} reverse-list->vector proper-list [start [end]]
4891Like @code{list->vector}, but the resulting vector contains the specified
4892range of elements of @var{proper-list} in reverse order. Note that SRFI
489343 does not document the @var{start} and @var{end} arguments, but both
4894its reference implementation and Guile's implementation support them.
4895@end deffn
4896
f16a2007
AR
4897@node SRFI-45
4898@subsection SRFI-45 - Primitives for Expressing Iterative Lazy Algorithms
4899@cindex SRFI-45
4900
4901This subsection is based on @uref{http://srfi.schemers.org/srfi-45/srfi-45.html, the
4902specification of SRFI-45} written by Andr@'e van Tonder.
4903
4904@c Copyright (C) André van Tonder (2003). All Rights Reserved.
4905
4906@c Permission is hereby granted, free of charge, to any person obtaining a
4907@c copy of this software and associated documentation files (the
4908@c "Software"), to deal in the Software without restriction, including
4909@c without limitation the rights to use, copy, modify, merge, publish,
4910@c distribute, sublicense, and/or sell copies of the Software, and to
4911@c permit persons to whom the Software is furnished to do so, subject to
4912@c the following conditions:
4913
4914@c The above copyright notice and this permission notice shall be included
4915@c in all copies or substantial portions of the Software.
4916
4917@c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
4918@c OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4919@c MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
4920@c NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
4921@c LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
4922@c OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
4923@c WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4924
4925Lazy evaluation is traditionally simulated in Scheme using @code{delay}
4926and @code{force}. However, these primitives are not powerful enough to
4927express a large class of lazy algorithms that are iterative. Indeed, it
4928is folklore in the Scheme community that typical iterative lazy
4929algorithms written using delay and force will often require unbounded
4930memory.
4931
4932This SRFI provides set of three operations: @{@code{lazy}, @code{delay},
4933@code{force}@}, which allow the programmer to succinctly express lazy
4934algorithms while retaining bounded space behavior in cases that are
4935properly tail-recursive. A general recipe for using these primitives is
4936provided. An additional procedure @code{eager} is provided for the
4937construction of eager promises in cases where efficiency is a concern.
4938
4939Although this SRFI redefines @code{delay} and @code{force}, the
4940extension is conservative in the sense that the semantics of the subset
4941@{@code{delay}, @code{force}@} in isolation (i.e., as long as the
4942program does not use @code{lazy}) agrees with that in R5RS. In other
4943words, no program that uses the R5RS definitions of delay and force will
4944break if those definition are replaced by the SRFI-45 definitions of
4945delay and force.
4946
d291d799
MW
4947Guile also adds @code{promise?} to the list of exports, which is not
4948part of the official SRFI-45.
4949
4950@deffn {Scheme Procedure} promise? obj
4951Return true if @var{obj} is an SRFI-45 promise, otherwise return false.
4952@end deffn
4953
f16a2007
AR
4954@deffn {Scheme Syntax} delay expression
4955Takes an expression of arbitrary type @var{a} and returns a promise of
4956type @code{(Promise @var{a})} which at some point in the future may be
4957asked (by the @code{force} procedure) to evaluate the expression and
4958deliver the resulting value.
4959@end deffn
4960
4961@deffn {Scheme Syntax} lazy expression
4962Takes an expression of type @code{(Promise @var{a})} and returns a
4963promise of type @code{(Promise @var{a})} which at some point in the
4964future may be asked (by the @code{force} procedure) to evaluate the
4965expression and deliver the resulting promise.
4966@end deffn
4967
4968@deffn {Scheme Procedure} force expression
4969Takes an argument of type @code{(Promise @var{a})} and returns a value
4970of type @var{a} as follows: If a value of type @var{a} has been computed
4971for the promise, this value is returned. Otherwise, the promise is
4972first evaluated, then overwritten by the obtained promise or value, and
4973then force is again applied (iteratively) to the promise.
4974@end deffn
4975
4976@deffn {Scheme Procedure} eager expression
4977Takes an argument of type @var{a} and returns a value of type
4978@code{(Promise @var{a})}. As opposed to @code{delay}, the argument is
4979evaluated eagerly. Semantically, writing @code{(eager expression)} is
4980equivalent to writing
4981
4982@lisp
4983(let ((value expression)) (delay value)).
4984@end lisp
4985
4986However, the former is more efficient since it does not require
4987unnecessary creation and evaluation of thunks. We also have the
4988equivalence
4989
4990@lisp
4991(delay expression) = (lazy (eager expression))
4992@end lisp
4993@end deffn
4994
4995The following reduction rules may be helpful for reasoning about these
4996primitives. However, they do not express the memoization and memory
4997usage semantics specified above:
4998
4999@lisp
5000(force (delay expression)) -> expression
5001(force (lazy expression)) -> (force expression)
5002(force (eager value)) -> value
5003@end lisp
5004
5005@subsubheading Correct usage
5006
5007We now provide a general recipe for using the primitives @{@code{lazy},
5008@code{delay}, @code{force}@} to express lazy algorithms in Scheme. The
5009transformation is best described by way of an example: Consider the
5010stream-filter algorithm, expressed in a hypothetical lazy language as
5011
5012@lisp
5013(define (stream-filter p? s)
5014 (if (null? s) '()
5015 (let ((h (car s))
5016 (t (cdr s)))
5017 (if (p? h)
5018 (cons h (stream-filter p? t))
5019 (stream-filter p? t)))))
5020@end lisp
5021
ecb87335 5022This algorithm can be expressed as follows in Scheme:
f16a2007
AR
5023
5024@lisp
5025(define (stream-filter p? s)
5026 (lazy
5027 (if (null? (force s)) (delay '())
5028 (let ((h (car (force s)))
5029 (t (cdr (force s))))
5030 (if (p? h)
5031 (delay (cons h (stream-filter p? t)))
5032 (stream-filter p? t))))))
5033@end lisp
5034
5035In other words, we
5036
5037@itemize @bullet
5038@item
5039wrap all constructors (e.g., @code{'()}, @code{cons}) with @code{delay},
5040@item
5041apply @code{force} to arguments of deconstructors (e.g., @code{car},
5042@code{cdr} and @code{null?}),
5043@item
5044wrap procedure bodies with @code{(lazy ...)}.
5045@end itemize
5046
2d6a3144
MW
5047@node SRFI-46
5048@subsection SRFI-46 Basic syntax-rules Extensions
5049@cindex SRFI-46
5050
5051Guile's core @code{syntax-rules} supports the extensions specified by
5052SRFI-46/R7RS. Tail patterns have been supported since at least Guile
50532.0, and custom ellipsis identifiers have been supported since Guile
50542.0.10. @xref{Syntax Rules}.
5055
4ea9becb
KR
5056@node SRFI-55
5057@subsection SRFI-55 - Requiring Features
5058@cindex SRFI-55
5059
5060SRFI-55 provides @code{require-extension} which is a portable
5061mechanism to load selected SRFI modules. This is implemented in the
5062Guile core, there's no module needed to get SRFI-55 itself.
5063
df0a1002
BT
5064@deffn {library syntax} require-extension clause1 clause2 @dots{}
5065Require the features of @var{clause1} @var{clause2} @dots{} , throwing
5066an error if any are unavailable.
4ea9becb
KR
5067
5068A @var{clause} is of the form @code{(@var{identifier} arg...)}. The
5069only @var{identifier} currently supported is @code{srfi} and the
5070arguments are SRFI numbers. For example to get SRFI-1 and SRFI-6,
5071
5072@example
5073(require-extension (srfi 1 6))
5074@end example
5075
5076@code{require-extension} can only be used at the top-level.
5077
5078A Guile-specific program can simply @code{use-modules} to load SRFIs
5079not already in the core, @code{require-extension} is for programs
5080designed to be portable to other Scheme implementations.
5081@end deffn
5082
5083
8503beb8
KR
5084@node SRFI-60
5085@subsection SRFI-60 - Integers as Bits
5086@cindex SRFI-60
5087@cindex integers as bits
5088@cindex bitwise logical
5089
5090This SRFI provides various functions for treating integers as bits and
5091for bitwise manipulations. These functions can be obtained with,
5092
5093@example
5094(use-modules (srfi srfi-60))
5095@end example
5096
5097Integers are treated as infinite precision twos-complement, the same
5098as in the core logical functions (@pxref{Bitwise Operations}). And
5099likewise bit indexes start from 0 for the least significant bit. The
5100following functions in this SRFI are already in the Guile core,
5101
5102@quotation
5103@code{logand},
5104@code{logior},
5105@code{logxor},
5106@code{lognot},
5107@code{logtest},
5108@code{logcount},
5109@code{integer-length},
5110@code{logbit?},
5111@code{ash}
5112@end quotation
5113
5114@sp 1
5115@defun bitwise-and n1 ...
5116@defunx bitwise-ior n1 ...
5117@defunx bitwise-xor n1 ...
5118@defunx bitwise-not n
5119@defunx any-bits-set? j k
5120@defunx bit-set? index n
5121@defunx arithmetic-shift n count
5122@defunx bit-field n start end
5123@defunx bit-count n
5124Aliases for @code{logand}, @code{logior}, @code{logxor},
5125@code{lognot}, @code{logtest}, @code{logbit?}, @code{ash},
5126@code{bit-extract} and @code{logcount} respectively.
5127
5128Note that the name @code{bit-count} conflicts with @code{bit-count} in
5129the core (@pxref{Bit Vectors}).
5130@end defun
5131
5132@defun bitwise-if mask n1 n0
5133@defunx bitwise-merge mask n1 n0
5134Return an integer with bits selected from @var{n1} and @var{n0}
5135according to @var{mask}. Those bits where @var{mask} has 1s are taken
5136from @var{n1}, and those where @var{mask} has 0s are taken from
5137@var{n0}.
5138
5139@example
5140(bitwise-if 3 #b0101 #b1010) @result{} 9
5141@end example
5142@end defun
5143
5144@defun log2-binary-factors n
5145@defunx first-set-bit n
5146Return a count of how many factors of 2 are present in @var{n}. This
5147is also the bit index of the lowest 1 bit in @var{n}. If @var{n} is
51480, the return is @math{-1}.
5149
5150@example
5151(log2-binary-factors 6) @result{} 1
5152(log2-binary-factors -8) @result{} 3
5153@end example
5154@end defun
5155
5156@defun copy-bit index n newbit
5157Return @var{n} with the bit at @var{index} set according to
5158@var{newbit}. @var{newbit} should be @code{#t} to set the bit to 1,
5159or @code{#f} to set it to 0. Bits other than at @var{index} are
5160unchanged in the return.
5161
5162@example
5163(copy-bit 1 #b0101 #t) @result{} 7
5164@end example
5165@end defun
5166
5167@defun copy-bit-field n newbits start end
5168Return @var{n} with the bits from @var{start} (inclusive) to @var{end}
5169(exclusive) changed to the value @var{newbits}.
5170
5171The least significant bit in @var{newbits} goes to @var{start}, the
5172next to @math{@var{start}+1}, etc. Anything in @var{newbits} past the
5173@var{end} given is ignored.
5174
5175@example
5176(copy-bit-field #b10000 #b11 1 3) @result{} #b10110
5177@end example
5178@end defun
5179
5180@defun rotate-bit-field n count start end
5181Return @var{n} with the bit field from @var{start} (inclusive) to
5182@var{end} (exclusive) rotated upwards by @var{count} bits.
5183
5184@var{count} can be positive or negative, and it can be more than the
5185field width (it'll be reduced modulo the width).
5186
5187@example
5188(rotate-bit-field #b0110 2 1 4) @result{} #b1010
5189@end example
5190@end defun
5191
5192@defun reverse-bit-field n start end
5193Return @var{n} with the bits from @var{start} (inclusive) to @var{end}
5194(exclusive) reversed.
5195
5196@example
5197(reverse-bit-field #b101001 2 4) @result{} #b100101
5198@end example
5199@end defun
5200
5201@defun integer->list n [len]
5202Return bits from @var{n} in the form of a list of @code{#t} for 1 and
5203@code{#f} for 0. The least significant @var{len} bits are returned,
5204and the first list element is the most significant of those bits. If
5205@var{len} is not given, the default is @code{(integer-length @var{n})}
5206(@pxref{Bitwise Operations}).
5207
5208@example
5209(integer->list 6) @result{} (#t #t #f)
5210(integer->list 1 4) @result{} (#f #f #f #t)
5211@end example
5212@end defun
5213
5214@defun list->integer lst
5215@defunx booleans->integer bool@dots{}
5216Return an integer formed bitwise from the given @var{lst} list of
5217booleans, or for @code{booleans->integer} from the @var{bool}
5218arguments.
5219
5220Each boolean is @code{#t} for a 1 and @code{#f} for a 0. The first
5221element becomes the most significant bit in the return.
5222
5223@example
5224(list->integer '(#t #f #t #f)) @result{} 10
5225@end example
5226@end defun
5227
5228
43ed3b69
MV
5229@node SRFI-61
5230@subsection SRFI-61 - A more general @code{cond} clause
5231
5232This SRFI extends RnRS @code{cond} to support test expressions that
5233return multiple values, as well as arbitrary definitions of test
5234success. SRFI 61 is implemented in the Guile core; there's no module
5235needed to get SRFI-61 itself. Extended @code{cond} is documented in
9accf3d9 5236@ref{Conditionals,, Simple Conditional Evaluation}.
43ed3b69 5237
b306fae0
MW
5238@node SRFI-62
5239@subsection SRFI-62 - S-expression comments.
5240@cindex SRFI-62
5241
5242Starting from version 2.0, Guile's @code{read} supports SRFI-62/R7RS
5243S-expression comments by default.
5244
34e89877
MW
5245@node SRFI-64
5246@subsection SRFI-64 - A Scheme API for test suites.
5247@cindex SRFI-64
5248
5249See @uref{http://srfi.schemers.org/srfi-64/srfi-64.html, the
5250specification of SRFI-64}.
5251
8175a07e
AR
5252@node SRFI-67
5253@subsection SRFI-67 - Compare procedures
5254@cindex SRFI-67
5255
5256See @uref{http://srfi.schemers.org/srfi-67/srfi-67.html, the
5257specification of SRFI-67}.
43ed3b69 5258
1317062f
LC
5259@node SRFI-69
5260@subsection SRFI-69 - Basic hash tables
5261@cindex SRFI-69
5262
5263This is a portable wrapper around Guile's built-in hash table and weak
5264table support. @xref{Hash Tables}, for information on that built-in
5265support. Above that, this hash-table interface provides association
5266of equality and hash functions with tables at creation time, so
5267variants of each function are not required, as well as a procedure
5268that takes care of most uses for Guile hash table handles, which this
5269SRFI does not provide as such.
5270
5271Access it with:
5272
5273@lisp
5274(use-modules (srfi srfi-69))
5275@end lisp
5276
5277@menu
5278* SRFI-69 Creating hash tables::
5279* SRFI-69 Accessing table items::
5280* SRFI-69 Table properties::
5281* SRFI-69 Hash table algorithms::
5282@end menu
5283
5284@node SRFI-69 Creating hash tables
5285@subsubsection Creating hash tables
5286
5287@deffn {Scheme Procedure} make-hash-table [equal-proc hash-proc #:weak weakness start-size]
5288Create and answer a new hash table with @var{equal-proc} as the
5289equality function and @var{hash-proc} as the hashing function.
5290
5291By default, @var{equal-proc} is @code{equal?}. It can be any
5292two-argument procedure, and should answer whether two keys are the
5293same for this table's purposes.
5294
5295My default @var{hash-proc} assumes that @code{equal-proc} is no
5296coarser than @code{equal?} unless it is literally @code{string-ci=?}.
5297If provided, @var{hash-proc} should be a two-argument procedure that
5298takes a key and the current table size, and answers a reasonably good
5299hash integer between 0 (inclusive) and the size (exclusive).
5300
5301@var{weakness} should be @code{#f} or a symbol indicating how ``weak''
5302the hash table is:
5303
5304@table @code
5305@item #f
5306An ordinary non-weak hash table. This is the default.
5307
5308@item key
5309When the key has no more non-weak references at GC, remove that entry.
5310
5311@item value
5312When the value has no more non-weak references at GC, remove that
5313entry.
5314
5315@item key-or-value
5316When either has no more non-weak references at GC, remove the
5317association.
5318@end table
5319
5320As a legacy of the time when Guile couldn't grow hash tables,
5321@var{start-size} is an optional integer argument that specifies the
dfe8c13b
LC
5322approximate starting size for the hash table, which will be rounded to
5323an algorithmically-sounder number.
1317062f
LC
5324@end deffn
5325
dfe8c13b 5326By @dfn{coarser} than @code{equal?}, we mean that for all @var{x} and
1317062f
LC
5327@var{y} values where @code{(@var{equal-proc} @var{x} @var{y})},
5328@code{(equal? @var{x} @var{y})} as well. If that does not hold for
5329your @var{equal-proc}, you must provide a @var{hash-proc}.
5330
5331In the case of weak tables, remember that @dfn{references} above
5332always refers to @code{eq?}-wise references. Just because you have a
5333reference to some string @code{"foo"} doesn't mean that an association
5334with key @code{"foo"} in a weak-key table @emph{won't} be collected;
5335it only counts as a reference if the two @code{"foo"}s are @code{eq?},
5336regardless of @var{equal-proc}. As such, it is usually only sensible
5337to use @code{eq?} and @code{hashq} as the equivalence and hash
5338functions for a weak table. @xref{Weak References}, for more
5339information on Guile's built-in weak table support.
5340
5341@deffn {Scheme Procedure} alist->hash-table alist [equal-proc hash-proc #:weak weakness start-size]
5342As with @code{make-hash-table}, but initialize it with the
5343associations in @var{alist}. Where keys are repeated in @var{alist},
5344the leftmost association takes precedence.
5345@end deffn
5346
5347@node SRFI-69 Accessing table items
5348@subsubsection Accessing table items
5349
5350@deffn {Scheme Procedure} hash-table-ref table key [default-thunk]
5351@deffnx {Scheme Procedure} hash-table-ref/default table key default
5352Answer the value associated with @var{key} in @var{table}. If
5353@var{key} is not present, answer the result of invoking the thunk
5354@var{default-thunk}, which signals an error instead by default.
5355
5356@code{hash-table-ref/default} is a variant that requires a third
5357argument, @var{default}, and answers @var{default} itself instead of
5358invoking it.
5359@end deffn
5360
5361@deffn {Scheme Procedure} hash-table-set! table key new-value
5362Set @var{key} to @var{new-value} in @var{table}.
5363@end deffn
5364
5365@deffn {Scheme Procedure} hash-table-delete! table key
5366Remove the association of @var{key} in @var{table}, if present. If
5367absent, do nothing.
5368@end deffn
5369
5370@deffn {Scheme Procedure} hash-table-exists? table key
5371Answer whether @var{key} has an association in @var{table}.
5372@end deffn
5373
5374@deffn {Scheme Procedure} hash-table-update! table key modifier [default-thunk]
5375@deffnx {Scheme Procedure} hash-table-update!/default table key modifier default
5376Replace @var{key}'s associated value in @var{table} by invoking
5377@var{modifier} with one argument, the old value.
5378
5379If @var{key} is not present, and @var{default-thunk} is provided,
5380invoke it with no arguments to get the ``old value'' to be passed to
5381@var{modifier} as above. If @var{default-thunk} is not provided in
5382such a case, signal an error.
5383
5384@code{hash-table-update!/default} is a variant that requires the
5385fourth argument, which is used directly as the ``old value'' rather
5386than as a thunk to be invoked to retrieve the ``old value''.
5387@end deffn
5388
5389@node SRFI-69 Table properties
5390@subsubsection Table properties
5391
5392@deffn {Scheme Procedure} hash-table-size table
5393Answer the number of associations in @var{table}. This is guaranteed
5394to run in constant time for non-weak tables.
5395@end deffn
5396
5397@deffn {Scheme Procedure} hash-table-keys table
5398Answer an unordered list of the keys in @var{table}.
5399@end deffn
5400
5401@deffn {Scheme Procedure} hash-table-values table
5402Answer an unordered list of the values in @var{table}.
5403@end deffn
5404
5405@deffn {Scheme Procedure} hash-table-walk table proc
5406Invoke @var{proc} once for each association in @var{table}, passing
5407the key and value as arguments.
5408@end deffn
5409
5410@deffn {Scheme Procedure} hash-table-fold table proc init
5411Invoke @code{(@var{proc} @var{key} @var{value} @var{previous})} for
5412each @var{key} and @var{value} in @var{table}, where @var{previous} is
5413the result of the previous invocation, using @var{init} as the first
5414@var{previous} value. Answer the final @var{proc} result.
5415@end deffn
5416
5417@deffn {Scheme Procedure} hash-table->alist table
5418Answer an alist where each association in @var{table} is an
5419association in the result.
5420@end deffn
5421
5422@node SRFI-69 Hash table algorithms
5423@subsubsection Hash table algorithms
5424
5425Each hash table carries an @dfn{equivalence function} and a @dfn{hash
5426function}, used to implement key lookups. Beginning users should
5427follow the rules for consistency of the default @var{hash-proc}
5428specified above. Advanced users can use these to implement their own
5429equivalence and hash functions for specialized lookup semantics.
5430
5431@deffn {Scheme Procedure} hash-table-equivalence-function hash-table
5432@deffnx {Scheme Procedure} hash-table-hash-function hash-table
5433Answer the equivalence and hash function of @var{hash-table}, respectively.
5434@end deffn
5435
5436@deffn {Scheme Procedure} hash obj [size]
5437@deffnx {Scheme Procedure} string-hash obj [size]
5438@deffnx {Scheme Procedure} string-ci-hash obj [size]
5439@deffnx {Scheme Procedure} hash-by-identity obj [size]
5440Answer a hash value appropriate for equality predicate @code{equal?},
5441@code{string=?}, @code{string-ci=?}, and @code{eq?}, respectively.
5442@end deffn
5443
5444@code{hash} is a backwards-compatible replacement for Guile's built-in
5445@code{hash}.
5446
da81e75d
MW
5447@node SRFI-87
5448@subsection SRFI-87 => in case clauses
5449@cindex SRFI-87
5450
5451Starting from version 2.0.6, Guile's core @code{case} syntax supports
5452@code{=>} in clauses, as specified by SRFI-87/R7RS.
5453@xref{Conditionals}.
5454
189681f5
LC
5455@node SRFI-88
5456@subsection SRFI-88 Keyword Objects
5457@cindex SRFI-88
5458@cindex keyword objects
5459
e36280cb 5460@uref{http://srfi.schemers.org/srfi-88/srfi-88.html, SRFI-88} provides
189681f5
LC
5461@dfn{keyword objects}, which are equivalent to Guile's keywords
5462(@pxref{Keywords}). SRFI-88 keywords can be entered using the
5463@dfn{postfix keyword syntax}, which consists of an identifier followed
1518f649 5464by @code{:} (@pxref{Scheme Read, @code{postfix} keyword syntax}).
189681f5
LC
5465SRFI-88 can be made available with:
5466
5467@example
5468(use-modules (srfi srfi-88))
5469@end example
5470
5471Doing so installs the right reader option for keyword syntax, using
5472@code{(read-set! keywords 'postfix)}. It also provides the procedures
5473described below.
5474
5475@deffn {Scheme Procedure} keyword? obj
5476Return @code{#t} if @var{obj} is a keyword. This is the same procedure
5477as the same-named built-in procedure (@pxref{Keyword Procedures,
5478@code{keyword?}}).
5479
5480@example
5481(keyword? foo:) @result{} #t
5482(keyword? 'foo:) @result{} #t
5483(keyword? "foo") @result{} #f
5484@end example
5485@end deffn
5486
5487@deffn {Scheme Procedure} keyword->string kw
5488Return the name of @var{kw} as a string, i.e., without the trailing
5489colon. The returned string may not be modified, e.g., with
5490@code{string-set!}.
5491
5492@example
5493(keyword->string foo:) @result{} "foo"
5494@end example
5495@end deffn
5496
5497@deffn {Scheme Procedure} string->keyword str
5498Return the keyword object whose name is @var{str}.
5499
5500@example
5501(keyword->string (string->keyword "a b c")) @result{} "a b c"
5502@end example
5503@end deffn
5504
922d417b
JG
5505@node SRFI-98
5506@subsection SRFI-98 Accessing environment variables.
5507@cindex SRFI-98
5508@cindex environment variables
5509
5510This is a portable wrapper around Guile's built-in support for
5511interacting with the current environment, @xref{Runtime Environment}.
5512
5513@deffn {Scheme Procedure} get-environment-variable name
5514Returns a string containing the value of the environment variable
5515given by the string @code{name}, or @code{#f} if the named
5516environment variable is not found. This is equivalent to
5517@code{(getenv name)}.
5518@end deffn
5519
5520@deffn {Scheme Procedure} get-environment-variables
5521Returns the names and values of all the environment variables as an
5522association list in which both the keys and the values are strings.
5523@end deffn
1317062f 5524
bf9eb54a
MW
5525@node SRFI-105
5526@subsection SRFI-105 Curly-infix expressions.
5527@cindex SRFI-105
5528@cindex curly-infix
5529@cindex curly-infix-and-bracket-lists
5530
5531Guile's built-in reader includes support for SRFI-105 curly-infix
5532expressions. See @uref{http://srfi.schemers.org/srfi-105/srfi-105.html,
5533the specification of SRFI-105}. Some examples:
5534
5535@example
5536@{n <= 5@} @result{} (<= n 5)
5537@{a + b + c@} @result{} (+ a b c)
5538@{a * @{b + c@}@} @result{} (* a (+ b c))
5539@{(- a) / b@} @result{} (/ (- a) b)
5540@{-(a) / b@} @result{} (/ (- a) b) as well
5541@{(f a b) + (g h)@} @result{} (+ (f a b) (g h))
5542@{f(a b) + g(h)@} @result{} (+ (f a b) (g h)) as well
5543@{f[a b] + g(h)@} @result{} (+ ($bracket-apply$ f a b) (g h))
5544'@{a + f(b) + x@} @result{} '(+ a (f b) x)
5545@{length(x) >= 6@} @result{} (>= (length x) 6)
5546@{n-1 + n-2@} @result{} (+ n-1 n-2)
5547@{n * factorial@{n - 1@}@} @result{} (* n (factorial (- n 1)))
5548@{@{a > 0@} and @{b >= 1@}@} @result{} (and (> a 0) (>= b 1))
5549@{f@{n - 1@}(x)@} @result{} ((f (- n 1)) x)
5550@{a . z@} @result{} ($nfx$ a . z)
5551@{a + b - c@} @result{} ($nfx$ a + b - c)
5552@end example
5553
5554To enable curly-infix expressions within a file, place the reader
5555directive @code{#!curly-infix} before the first use of curly-infix
5556notation. To globally enable curly-infix expressions in Guile's reader,
5557set the @code{curly-infix} read option.
5558
5559Guile also implements the following non-standard extension to SRFI-105:
5560if @code{curly-infix} is enabled and there is no other meaning assigned
5561to square brackets (i.e. the @code{square-brackets} read option is
5562turned off), then lists within square brackets are read as normal lists
5563but with the special symbol @code{$bracket-list$} added to the front.
5564To enable this combination of read options within a file, use the reader
5565directive @code{#!curly-infix-and-bracket-lists}. For example:
5566
5567@example
5568[a b] @result{} ($bracket-list$ a b)
5569[a . b] @result{} ($bracket-list$ a . b)
5570@end example
5571
5572
5573For more information on reader options, @xref{Scheme Read}.
5574
3e2e4965
MW
5575@node SRFI-111
5576@subsection SRFI-111 Boxes.
5577@cindex SRFI-111
5578
5579@uref{http://srfi.schemers.org/srfi-111/srfi-111.html, SRFI-111}
5580provides boxes: objects with a single mutable cell.
5581
5582@deffn {Scheme Procedure} box value
5583Return a newly allocated box whose contents is initialized to
5584@var{value}.
5585@end deffn
5586
5587@deffn {Scheme Procedure} box? obj
5588Return true if @var{obj} is a box, otherwise return false.
5589@end deffn
5590
5591@deffn {Scheme Procedure} unbox box
5592Return the current contents of @var{box}.
5593@end deffn
5594
5595@deffn {Scheme Procedure} set-box! box value
5596Set the contents of @var{box} to @var{value}.
5597@end deffn
5598
12991fed 5599@c srfi-modules.texi ends here
193239f1
KR
5600
5601@c Local Variables:
5602@c TeX-master: "guile.texi"
5603@c End: