*** empty log message ***
[bpt/guile.git] / doc / ref / api-data.texi
CommitLineData
07d83abe
MV
1@c -*-texinfo-*-
2@c This is part of the GNU Guile Reference Manual.
3@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004
4@c Free Software Foundation, Inc.
5@c See the file guile.texi for copying conditions.
6
7@page
8@node Simple Data Types
9@section Simple Generic Data Types
10
11This chapter describes those of Guile's simple data types which are
12primarily used for their role as items of generic data. By
13@dfn{simple} we mean data types that are not primarily used as
14containers to hold other data --- i.e.@: pairs, lists, vectors and so on.
15For the documentation of such @dfn{compound} data types, see
16@ref{Compound Data Types}.
17
18@c One of the great strengths of Scheme is that there is no straightforward
19@c distinction between ``data'' and ``functionality''. For example,
20@c Guile's support for dynamic linking could be described:
21
22@c @itemize @bullet
23@c @item
24@c either in a ``data-centric'' way, as the behaviour and properties of the
25@c ``dynamically linked object'' data type, and the operations that may be
26@c applied to instances of this type
27
28@c @item
29@c or in a ``functionality-centric'' way, as the set of procedures that
30@c constitute Guile's support for dynamic linking, in the context of the
31@c module system.
32@c @end itemize
33
34@c The contents of this chapter are, therefore, a matter of judgment. By
35@c @dfn{generic}, we mean to select those data types whose typical use as
36@c @emph{data} in a wide variety of programming contexts is more important
37@c than their use in the implementation of a particular piece of
38@c @emph{functionality}. The last section of this chapter provides
39@c references for all the data types that are documented not here but in a
40@c ``functionality-centric'' way elsewhere in the manual.
41
42@menu
43* Booleans:: True/false values.
44* Numbers:: Numerical data types.
45* Characters:: New character names.
46* Strings:: Special things about strings.
47* Regular Expressions:: Pattern matching and substitution.
48* Symbols:: Symbols.
49* Keywords:: Self-quoting, customizable display keywords.
50* Other Types:: "Functionality-centric" data types.
51@end menu
52
53
54@node Booleans
55@subsection Booleans
56@tpindex Booleans
57
58The two boolean values are @code{#t} for true and @code{#f} for false.
59
60Boolean values are returned by predicate procedures, such as the general
61equality predicates @code{eq?}, @code{eqv?} and @code{equal?}
62(@pxref{Equality}) and numerical and string comparison operators like
63@code{string=?} (@pxref{String Comparison}) and @code{<=}
64(@pxref{Comparison}).
65
66@lisp
67(<= 3 8)
68@result{} #t
69
70(<= 3 -3)
71@result{} #f
72
73(equal? "house" "houses")
74@result{} #f
75
76(eq? #f #f)
77@result{}
78#t
79@end lisp
80
81In test condition contexts like @code{if} and @code{cond} (@pxref{if
82cond case}), where a group of subexpressions will be evaluated only if a
83@var{condition} expression evaluates to ``true'', ``true'' means any
84value at all except @code{#f}.
85
86@lisp
87(if #t "yes" "no")
88@result{} "yes"
89
90(if 0 "yes" "no")
91@result{} "yes"
92
93(if #f "yes" "no")
94@result{} "no"
95@end lisp
96
97A result of this asymmetry is that typical Scheme source code more often
98uses @code{#f} explicitly than @code{#t}: @code{#f} is necessary to
99represent an @code{if} or @code{cond} false value, whereas @code{#t} is
100not necessary to represent an @code{if} or @code{cond} true value.
101
102It is important to note that @code{#f} is @strong{not} equivalent to any
103other Scheme value. In particular, @code{#f} is not the same as the
104number 0 (like in C and C++), and not the same as the ``empty list''
105(like in some Lisp dialects).
106
107In C, the two Scheme boolean values are available as the two constants
108@code{SCM_BOOL_T} for @code{#t} and @code{SCM_BOOL_F} for @code{#f}.
109Care must be taken with the false value @code{SCM_BOOL_F}: it is not
110false when used in C conditionals. In order to test for it, use
111@code{scm_is_false} or @code{scm_is_true}.
112
113@rnindex not
114@deffn {Scheme Procedure} not x
115@deffnx {C Function} scm_not (x)
116Return @code{#t} if @var{x} is @code{#f}, else return @code{#f}.
117@end deffn
118
119@rnindex boolean?
120@deffn {Scheme Procedure} boolean? obj
121@deffnx {C Function} scm_boolean_p (obj)
122Return @code{#t} if @var{obj} is either @code{#t} or @code{#f}, else
123return @code{#f}.
124@end deffn
125
126@deftypevr {C Macro} SCM SCM_BOOL_T
127The @code{SCM} representation of the Scheme object @code{#t}.
128@end deftypevr
129
130@deftypevr {C Macro} SCM SCM_BOOL_F
131The @code{SCM} representation of the Scheme object @code{#f}.
132@end deftypevr
133
134@deftypefn {C Function} int scm_is_true (SCM obj)
135Return @code{0} if @var{obj} is @code{#f}, else return @code{1}.
136@end deftypefn
137
138@deftypefn {C Function} int scm_is_false (SCM obj)
139Return @code{1} if @var{obj} is @code{#f}, else return @code{0}.
140@end deftypefn
141
142@deftypefn {C Function} int scm_is_bool (SCM obj)
143Return @code{1} if @var{obj} is either @code{#t} or @code{#f}, else
144return @code{0}.
145@end deftypefn
146
147@deftypefn {C Function} SCM scm_from_bool (int val)
148Return @code{#f} if @var{val} is @code{0}, else return @code{#t}.
149@end deftypefn
150
151@deftypefn {C Function} int scm_to_bool (SCM val)
152Return @code{1} if @var{val} is @code{SCM_BOOL_T}, return @code{0}
153when @var{val} is @code{SCM_BOOL_F}, else signal a `wrong type' error.
154
155You should probably use @code{scm_is_true} instead of this function
156when you just want to test a @code{SCM} value for trueness.
157@end deftypefn
158
159@node Numbers
160@subsection Numerical data types
161@tpindex Numbers
162
163Guile supports a rich ``tower'' of numerical types --- integer,
164rational, real and complex --- and provides an extensive set of
165mathematical and scientific functions for operating on numerical
166data. This section of the manual documents those types and functions.
167
168You may also find it illuminating to read R5RS's presentation of numbers
169in Scheme, which is particularly clear and accessible: see
170@ref{Numbers,,,r5rs,R5RS}.
171
172@menu
173* Numerical Tower:: Scheme's numerical "tower".
174* Integers:: Whole numbers.
175* Reals and Rationals:: Real and rational numbers.
176* Complex Numbers:: Complex numbers.
177* Exactness:: Exactness and inexactness.
178* Number Syntax:: Read syntax for numerical data.
179* Integer Operations:: Operations on integer values.
180* Comparison:: Comparison predicates.
181* Conversion:: Converting numbers to and from strings.
182* Complex:: Complex number operations.
183* Arithmetic:: Arithmetic functions.
184* Scientific:: Scientific functions.
185* Primitive Numerics:: Primitive numeric functions.
186* Bitwise Operations:: Logical AND, OR, NOT, and so on.
187* Random:: Random number generation.
188@end menu
189
190
191@node Numerical Tower
192@subsubsection Scheme's Numerical ``Tower''
193@rnindex number?
194
195Scheme's numerical ``tower'' consists of the following categories of
196numbers:
197
198@table @dfn
199@item integers
200Whole numbers, positive or negative; e.g.@: --5, 0, 18.
201
202@item rationals
203The set of numbers that can be expressed as @math{@var{p}/@var{q}}
204where @var{p} and @var{q} are integers; e.g.@: @math{9/16} works, but
205pi (an irrational number) doesn't. These include integers
206(@math{@var{n}/1}).
207
208@item real numbers
209The set of numbers that describes all possible positions along a
210one-dimensional line. This includes rationals as well as irrational
211numbers.
212
213@item complex numbers
214The set of numbers that describes all possible positions in a two
215dimensional space. This includes real as well as imaginary numbers
216(@math{@var{a}+@var{b}i}, where @var{a} is the @dfn{real part},
217@var{b} is the @dfn{imaginary part}, and @math{i} is the square root of
218@minus{}1.)
219@end table
220
221It is called a tower because each category ``sits on'' the one that
222follows it, in the sense that every integer is also a rational, every
223rational is also real, and every real number is also a complex number
224(but with zero imaginary part).
225
226In addition to the classification into integers, rationals, reals and
227complex numbers, Scheme also distinguishes between whether a number is
228represented exactly or not. For example, the result of
229@m{2\sin(\pi/4),sin(pi/4)} is exactly @m{\sqrt{2},2^(1/2)} but Guile
230can neither represent @m{\pi/4,pi/4} nor @m{\sqrt{2},2^(1/2)} exactly.
231Instead, it stores an inexact approximation, using the C type
232@code{double}.
233
234Guile can represent exact rationals of any magnitude, inexact
235rationals that fit into a C @code{double}, and inexact complex numbers
236with @code{double} real and imaginary parts.
237
238The @code{number?} predicate may be applied to any Scheme value to
239discover whether the value is any of the supported numerical types.
240
241@deffn {Scheme Procedure} number? obj
242@deffnx {C Function} scm_number_p (obj)
243Return @code{#t} if @var{obj} is any kind of number, else @code{#f}.
244@end deffn
245
246For example:
247
248@lisp
249(number? 3)
250@result{} #t
251
252(number? "hello there!")
253@result{} #f
254
255(define pi 3.141592654)
256(number? pi)
257@result{} #t
258@end lisp
259
5615f696
MV
260@deftypefn {C Function} int scm_is_number (SCM obj)
261This is equivalent to @code{scm_is_true (scm_number_p (obj))}.
262@end deftypefn
263
07d83abe
MV
264The next few subsections document each of Guile's numerical data types
265in detail.
266
267@node Integers
268@subsubsection Integers
269
270@tpindex Integer numbers
271
272@rnindex integer?
273
274Integers are whole numbers, that is numbers with no fractional part,
275such as 2, 83, and @minus{}3789.
276
277Integers in Guile can be arbitrarily big, as shown by the following
278example.
279
280@lisp
281(define (factorial n)
282 (let loop ((n n) (product 1))
283 (if (= n 0)
284 product
285 (loop (- n 1) (* product n)))))
286
287(factorial 3)
288@result{} 6
289
290(factorial 20)
291@result{} 2432902008176640000
292
293(- (factorial 45))
294@result{} -119622220865480194561963161495657715064383733760000000000
295@end lisp
296
297Readers whose background is in programming languages where integers are
298limited by the need to fit into just 4 or 8 bytes of memory may find
299this surprising, or suspect that Guile's representation of integers is
300inefficient. In fact, Guile achieves a near optimal balance of
301convenience and efficiency by using the host computer's native
302representation of integers where possible, and a more general
303representation where the required number does not fit in the native
304form. Conversion between these two representations is automatic and
305completely invisible to the Scheme level programmer.
306
307The infinities @samp{+inf.0} and @samp{-inf.0} are considered to be
308inexact integers. They are explained in detail in the next section,
309together with reals and rationals.
310
311C has a host of different integer types, and Guile offers a host of
312functions to convert between them and the @code{SCM} representation.
313For example, a C @code{int} can be handled with @code{scm_to_int} and
314@code{scm_from_int}. Guile also defines a few C integer types of its
315own, to help with differences between systems.
316
317C integer types that are not covered can be handled with the generic
318@code{scm_to_signed_integer} and @code{scm_from_signed_integer} for
319signed types, or with @code{scm_to_unsigned_integer} and
320@code{scm_from_unsigned_integer} for unsigned types.
321
322Scheme integers can be exact and inexact. For example, a number
323written as @code{3.0} with an explicit decimal-point is inexact, but
324it is also an integer. The functions @code{integer?} and
325@code{scm_is_integer} report true for such a number, but the functions
326@code{scm_is_signed_integer} and @code{scm_is_unsigned_integer} only
327allow exact integers and thus report false. Likewise, the conversion
328functions like @code{scm_to_signed_integer} only accept exact
329integers.
330
331The motivation for this behavior is that the inexactness of a number
332should not be lost silently. If you want to allow inexact integers,
333you can explicitely insert a call to @code{inexact->exact} or to its C
334equivalent @code{scm_inexact_to_exact}. (Only inexact integers will
335be converted by this call into exact integers; inexact non-integers
336will become exact fractions.)
337
338@deffn {Scheme Procedure} integer? x
339@deffnx {C Function} scm_integer_p (x)
340Return @code{#t} if @var{x} is an exactor inexact integer number, else
341@code{#f}.
342
343@lisp
344(integer? 487)
345@result{} #t
346
347(integer? 3.0)
348@result{} #t
349
350(integer? -3.4)
351@result{} #f
352
353(integer? +inf.0)
354@result{} #t
355@end lisp
356@end deffn
357
358@deftypefn {C Function} int scm_is_integer (SCM x)
359This is equivalent to @code{scm_is_true (scm_integer_p (x))}.
360@end deftypefn
361
362@defvr {C Type} scm_t_int8
363@defvrx {C Type} scm_t_uint8
364@defvrx {C Type} scm_t_int16
365@defvrx {C Type} scm_t_uint16
366@defvrx {C Type} scm_t_int32
367@defvrx {C Type} scm_t_uint32
368@defvrx {C Type} scm_t_int64
369@defvrx {C Type} scm_t_uint64
370@defvrx {C Type} scm_t_intmax
371@defvrx {C Type} scm_t_uintmax
372The C types are equivalent to the corresponding ISO C types but are
373defined on all platforms, with the exception of @code{scm_t_int64} and
374@code{scm_t_uint64}, which are only defined when a 64-bit type is
375available. For example, @code{scm_t_int8} is equivalent to
376@code{int8_t}.
377
378You can regard these definitions as a stop-gap measure until all
379platforms provide these types. If you know that all the platforms
380that you are interested in already provide these types, it is better
381to use them directly instead of the types provided by Guile.
382@end defvr
383
384@deftypefn {C Function} int scm_is_signed_integer (SCM x, scm_t_intmax min, scm_t_intmax max)
385@deftypefnx {C Function} int scm_is_unsigned_integer (SCM x, scm_t_uintmax min, scm_t_uintmax max)
386Return @code{1} when @var{x} represents an exact integer that is
387between @var{min} and @var{max}, inclusive.
388
389These functions can be used to check whether a @code{SCM} value will
390fit into a given range, such as the range of a given C integer type.
391If you just want to convert a @code{SCM} value to a given C integer
392type, use one of the conversion functions directly.
393@end deftypefn
394
395@deftypefn {C Function} scm_t_intmax scm_to_signed_integer (SCM x, scm_t_intmax min, scm_t_intmax max)
396@deftypefnx {C Function} scm_t_uintmax scm_to_unsigned_integer (SCM x, scm_t_uintmax min, scm_t_uintmax max)
397When @var{x} represents an exact integer that is between @var{min} and
398@var{max} inclusive, return that integer. Else signal an error,
399either a `wrong-type' error when @var{x} is not an exact integer, or
400an `out-of-range' error when it doesn't fit the given range.
401@end deftypefn
402
403@deftypefn {C Function} SCM scm_from_signed_integer (scm_t_intmax x)
404@deftypefnx {C Function} SCM scm_from_unsigned_integer (scm_t_uintmax x)
405Return the @code{SCM} value that represents the integer @var{x}. This
406function will always succeed and will always return an exact number.
407@end deftypefn
408
409@deftypefn {C Function} char scm_to_char (SCM x)
410@deftypefnx {C Function} {signed char} scm_to_schar (SCM x)
411@deftypefnx {C Function} {unsigned char} scm_to_uchar (SCM x)
412@deftypefnx {C Function} short scm_to_short (SCM x)
413@deftypefnx {C Function} {unsigned short} scm_to_ushort (SCM x)
414@deftypefnx {C Function} int scm_to_int (SCM x)
415@deftypefnx {C Function} {unsigned int} scm_to_uint (SCM x)
416@deftypefnx {C Function} long scm_to_long (SCM x)
417@deftypefnx {C Function} {unsigned long} scm_to_ulong (SCM x)
418@deftypefnx {C Function} {long long} scm_to_long_long (SCM x)
419@deftypefnx {C Function} {unsigned long long} scm_to_ulong_long (SCM x)
420@deftypefnx {C Function} size_t scm_to_size_t (SCM x)
421@deftypefnx {C Function} ssize_t scm_to_ssize_t (SCM x)
422@deftypefnx {C Function} scm_t_int8 scm_to_int8 (SCM x)
423@deftypefnx {C Function} scm_t_uint8 scm_to_uint8 (SCM x)
424@deftypefnx {C Function} scm_t_int16 scm_to_int16 (SCM x)
425@deftypefnx {C Function} scm_t_uint16 scm_to_uint16 (SCM x)
426@deftypefnx {C Function} scm_t_int32 scm_to_int32 (SCM x)
427@deftypefnx {C Function} scm_t_uint32 scm_to_uint32 (SCM x)
428@deftypefnx {C Function} scm_t_int64 scm_to_int64 (SCM x)
429@deftypefnx {C Function} scm_t_uint64 scm_to_uint64 (SCM x)
430@deftypefnx {C Function} scm_t_intmax scm_to_intmax (SCM x)
431@deftypefnx {C Function} scm_t_uintmax scm_to_uintmax (SCM x)
432When @var{x} represents an exact integer that fits into the indicated
433C type, return that integer. Else signal an error, either a
434`wrong-type' error when @var{x} is not an exact integer, or an
435`out-of-range' error when it doesn't fit the given range.
436
437The functions @code{scm_to_long_long}, @code{scm_to_ulong_long},
438@code{scm_to_int64}, and @code{scm_to_uint64} are only available when
439the corresponding types are.
440@end deftypefn
441
442@deftypefn {C Function} SCM scm_from_char (char x)
443@deftypefnx {C Function} SCM scm_from_schar (signed char x)
444@deftypefnx {C Function} SCM scm_from_uchar (unsigned char x)
445@deftypefnx {C Function} SCM scm_from_short (short x)
446@deftypefnx {C Function} SCM scm_from_ushort (unsigned short x)
447@deftypefnx {C Function} SCM scm_from_int (int x)
448@deftypefnx {C Function} SCM scm_from_uint (unsigned int x)
449@deftypefnx {C Function} SCM scm_from_long (long x)
450@deftypefnx {C Function} SCM scm_from_ulong (unsigned long x)
451@deftypefnx {C Function} SCM scm_from_long_long (long long x)
452@deftypefnx {C Function} SCM scm_from_ulong_long (unsigned long long x)
453@deftypefnx {C Function} SCM scm_from_size_t (size_t x)
454@deftypefnx {C Function} SCM scm_from_ssize_t (ssize_t x)
455@deftypefnx {C Function} SCM scm_from_int8 (scm_t_int8 x)
456@deftypefnx {C Function} SCM scm_from_uint8 (scm_t_uint8 x)
457@deftypefnx {C Function} SCM scm_from_int16 (scm_t_int16 x)
458@deftypefnx {C Function} SCM scm_from_uint16 (scm_t_uint16 x)
459@deftypefnx {C Function} SCM scm_from_int32 (scm_t_int32 x)
460@deftypefnx {C Function} SCM scm_from_uint32 (scm_t_uint32 x)
461@deftypefnx {C Function} SCM scm_from_int64 (scm_t_int64 x)
462@deftypefnx {C Function} SCM scm_from_uint64 (scm_t_uint64 x)
463@deftypefnx {C Function} SCM scm_from_intmax (scm_t_intmax x)
464@deftypefnx {C Function} SCM scm_from_uintmax (scm_t_uintmax x)
465Return the @code{SCM} value that represents the integer @var{x}.
466These functions will always succeed and will always return an exact
467number.
468@end deftypefn
469
470@node Reals and Rationals
471@subsubsection Real and Rational Numbers
472@tpindex Real numbers
473@tpindex Rational numbers
474
475@rnindex real?
476@rnindex rational?
477
478Mathematically, the real numbers are the set of numbers that describe
479all possible points along a continuous, infinite, one-dimensional line.
480The rational numbers are the set of all numbers that can be written as
481fractions @var{p}/@var{q}, where @var{p} and @var{q} are integers.
482All rational numbers are also real, but there are real numbers that
483are not rational, for example the square root of 2, and pi.
484
485Guile can represent both exact and inexact rational numbers, but it
486can not represent irrational numbers. Exact rationals are represented
487by storing the numerator and denominator as two exact integers.
488Inexact rationals are stored as floating point numbers using the C
489type @code{double}.
490
491Exact rationals are written as a fraction of integers. There must be
492no whitespace around the slash:
493
494@lisp
4951/2
496-22/7
497@end lisp
498
499Even though the actual encoding of inexact rationals is in binary, it
500may be helpful to think of it as a decimal number with a limited
501number of significant figures and a decimal point somewhere, since
502this corresponds to the standard notation for non-whole numbers. For
503example:
504
505@lisp
5060.34
507-0.00000142857931198
508-5648394822220000000000.0
5094.0
510@end lisp
511
512The limited precision of Guile's encoding means that any ``real'' number
513in Guile can be written in a rational form, by multiplying and then dividing
514by sufficient powers of 10 (or in fact, 2). For example,
515@samp{-0.00000142857931198} is the same as @minus{}142857931198 divided by
516100000000000000000. In Guile's current incarnation, therefore, the
517@code{rational?} and @code{real?} predicates are equivalent.
518
519
520Dividing by an exact zero leads to a error message, as one might
521expect. However, dividing by an inexact zero does not produce an
522error. Instead, the result of the division is either plus or minus
523infinity, depending on the sign of the divided number.
524
525The infinities are written @samp{+inf.0} and @samp{-inf.0},
526respectivly. This syntax is also recognized by @code{read} as an
527extension to the usual Scheme syntax.
528
529Dividing zero by zero yields something that is not a number at all:
530@samp{+nan.0}. This is the special `not a number' value.
531
532On platforms that follow @acronym{IEEE} 754 for their floating point
533arithmetic, the @samp{+inf.0}, @samp{-inf.0}, and @samp{+nan.0} values
534are implemented using the corresponding @acronym{IEEE} 754 values.
535They behave in arithmetic operations like @acronym{IEEE} 754 describes
536it, i.e., @code{(= +nan.0 +nan.0)} @result{} @code{#f}.
537
538The infinities are inexact integers and are considered to be both even
539and odd. While @samp{+nan.0} is not @code{=} to itself, it is
540@code{eqv?} to itself.
541
542To test for the special values, use the functions @code{inf?} and
543@code{nan?}.
544
545@deffn {Scheme Procedure} real? obj
546@deffnx {C Function} scm_real_p (obj)
547Return @code{#t} if @var{obj} is a real number, else @code{#f}. Note
548that the sets of integer and rational values form subsets of the set
549of real numbers, so the predicate will also be fulfilled if @var{obj}
550is an integer number or a rational number.
551@end deffn
552
553@deffn {Scheme Procedure} rational? x
554@deffnx {C Function} scm_rational_p (x)
555Return @code{#t} if @var{x} is a rational number, @code{#f} otherwise.
556Note that the set of integer values forms a subset of the set of
557rational numbers, i. e. the predicate will also be fulfilled if
558@var{x} is an integer number.
559
560Since Guile can not represent irrational numbers, every number
561satisfying @code{real?} also satisfies @code{rational?} in Guile.
562@end deffn
563
564@deffn {Scheme Procedure} rationalize x eps
565@deffnx {C Function} scm_rationalize (x, eps)
566Returns the @emph{simplest} rational number differing
567from @var{x} by no more than @var{eps}.
568
569As required by @acronym{R5RS}, @code{rationalize} only returns an
570exact result when both its arguments are exact. Thus, you might need
571to use @code{inexact->exact} on the arguments.
572
573@lisp
574(rationalize (inexact->exact 1.2) 1/100)
575@result{} 6/5
576@end lisp
577
578@end deffn
579
d3df9759
MV
580@deffn {Scheme Procedure} inf? x
581@deffnx {C Function} scm_inf_p (x)
07d83abe
MV
582Return @code{#t} if @var{x} is either @samp{+inf.0} or @samp{-inf.0},
583@code{#f} otherwise.
584@end deffn
585
586@deffn {Scheme Procedure} nan? x
d3df9759 587@deffnx {C Function} scm_nan_p (x)
07d83abe
MV
588Return @code{#t} if @var{x} is @samp{+nan.0}, @code{#f} otherwise.
589@end deffn
590
d3df9759
MV
591@deffn {Scheme Procedure} numerator x
592@deffnx {C Function} scm_numerator (x)
593Return the numerator of the rational number @var{x}.
594@end deffn
595
596@deffn {Scheme Procedure} denominator x
597@deffnx {C Function} scm_denominator (x)
598Return the denominator of the rational number @var{x}.
599@end deffn
600
601@deftypefn {C Function} int scm_is_real (SCM val)
602@deftypefnx {C Function} int scm_is_rational (SCM val)
603Equivalent to @code{scm_is_true (scm_real_p (val))} and
604@code{scm_is_true (scm_rational_p (val))}, respectively.
605@end deftypefn
606
607@deftypefn {C Function} double scm_to_double (SCM val)
608Returns the number closest to @var{val} that is representable as a
609@code{double}. Returns infinity for a @var{val} that is too large in
610magnitude. The argument @var{val} must be a real number.
611@end deftypefn
612
613@deftypefn {C Function} SCM scm_from_double (double val)
614Return the @code{SCM} value that representats @var{val}. The returned
615value is inexact according to the predicate @code{inexact?}, but it
616will be exactly equal to @var{val}.
617@end deftypefn
618
07d83abe
MV
619@node Complex Numbers
620@subsubsection Complex Numbers
621@tpindex Complex numbers
622
623@rnindex complex?
624
625Complex numbers are the set of numbers that describe all possible points
626in a two-dimensional space. The two coordinates of a particular point
627in this space are known as the @dfn{real} and @dfn{imaginary} parts of
628the complex number that describes that point.
629
630In Guile, complex numbers are written in rectangular form as the sum of
631their real and imaginary parts, using the symbol @code{i} to indicate
632the imaginary part.
633
634@lisp
6353+4i
636@result{}
6373.0+4.0i
638
639(* 3-8i 2.3+0.3i)
640@result{}
6419.3-17.5i
642@end lisp
643
644Guile represents a complex number with a non-zero imaginary part as a
645pair of inexact rationals, so the real and imaginary parts of a
646complex number have the same properties of inexactness and limited
647precision as single inexact rational numbers. Guile can not represent
648exact complex numbers with non-zero imaginary parts.
649
5615f696
MV
650@deffn {Scheme Procedure} complex? z
651@deffnx {C Function} scm_complex_p (z)
07d83abe
MV
652Return @code{#t} if @var{x} is a complex number, @code{#f}
653otherwise. Note that the sets of real, rational and integer
654values form subsets of the set of complex numbers, i. e. the
655predicate will also be fulfilled if @var{x} is a real,
656rational or integer number.
657@end deffn
658
07d83abe
MV
659@node Exactness
660@subsubsection Exact and Inexact Numbers
661@tpindex Exact numbers
662@tpindex Inexact numbers
663
664@rnindex exact?
665@rnindex inexact?
666@rnindex exact->inexact
667@rnindex inexact->exact
668
669R5RS requires that a calculation involving inexact numbers always
670produces an inexact result. To meet this requirement, Guile
671distinguishes between an exact integer value such as @samp{5} and the
672corresponding inexact real value which, to the limited precision
673available, has no fractional part, and is printed as @samp{5.0}. Guile
674will only convert the latter value to the former when forced to do so by
675an invocation of the @code{inexact->exact} procedure.
676
677@deffn {Scheme Procedure} exact? z
678@deffnx {C Function} scm_exact_p (z)
679Return @code{#t} if the number @var{z} is exact, @code{#f}
680otherwise.
681
682@lisp
683(exact? 2)
684@result{} #t
685
686(exact? 0.5)
687@result{} #f
688
689(exact? (/ 2))
690@result{} #t
691@end lisp
692
693@end deffn
694
695@deffn {Scheme Procedure} inexact? z
696@deffnx {C Function} scm_inexact_p (z)
697Return @code{#t} if the number @var{z} is inexact, @code{#f}
698else.
699@end deffn
700
701@deffn {Scheme Procedure} inexact->exact z
702@deffnx {C Function} scm_inexact_to_exact (z)
703Return an exact number that is numerically closest to @var{z}, when
704there is one. For inexact rationals, Guile returns the exact rational
705that is numerically equal to the inexact rational. Inexact complex
706numbers with a non-zero imaginary part can not be made exact.
707
708@lisp
709(inexact->exact 0.5)
710@result{} 1/2
711@end lisp
712
713The following happens because 12/10 is not exactly representable as a
714@code{double} (on most platforms). However, when reading a decimal
715number that has been marked exact with the ``#e'' prefix, Guile is
716able to represent it correctly.
717
718@lisp
719(inexact->exact 1.2)
720@result{} 5404319552844595/4503599627370496
721
722#e1.2
723@result{} 6/5
724@end lisp
725
726@end deffn
727
728@c begin (texi-doc-string "guile" "exact->inexact")
729@deffn {Scheme Procedure} exact->inexact z
730@deffnx {C Function} scm_exact_to_inexact (z)
731Convert the number @var{z} to its inexact representation.
732@end deffn
733
734
735@node Number Syntax
736@subsubsection Read Syntax for Numerical Data
737
738The read syntax for integers is a string of digits, optionally
739preceded by a minus or plus character, a code indicating the
740base in which the integer is encoded, and a code indicating whether
741the number is exact or inexact. The supported base codes are:
742
743@table @code
744@item #b
745@itemx #B
746the integer is written in binary (base 2)
747
748@item #o
749@itemx #O
750the integer is written in octal (base 8)
751
752@item #d
753@itemx #D
754the integer is written in decimal (base 10)
755
756@item #x
757@itemx #X
758the integer is written in hexadecimal (base 16)
759@end table
760
761If the base code is omitted, the integer is assumed to be decimal. The
762following examples show how these base codes are used.
763
764@lisp
765-13
766@result{} -13
767
768#d-13
769@result{} -13
770
771#x-13
772@result{} -19
773
774#b+1101
775@result{} 13
776
777#o377
778@result{} 255
779@end lisp
780
781The codes for indicating exactness (which can, incidentally, be applied
782to all numerical values) are:
783
784@table @code
785@item #e
786@itemx #E
787the number is exact
788
789@item #i
790@itemx #I
791the number is inexact.
792@end table
793
794If the exactness indicator is omitted, the number is exact unless it
795contains a radix point. Since Guile can not represent exact complex
796numbers, an error is signalled when asking for them.
797
798@lisp
799(exact? 1.2)
800@result{} #f
801
802(exact? #e1.2)
803@result{} #t
804
805(exact? #e+1i)
806ERROR: Wrong type argument
807@end lisp
808
809Guile also understands the syntax @samp{+inf.0} and @samp{-inf.0} for
810plus and minus infinity, respectively. The value must be written
811exactly as shown, that is, they always must have a sign and exactly
812one zero digit after the decimal point. It also understands
813@samp{+nan.0} and @samp{-nan.0} for the special `not-a-number' value.
814The sign is ignored for `not-a-number' and the value is always printed
815as @samp{+nan.0}.
816
817@node Integer Operations
818@subsubsection Operations on Integer Values
819@rnindex odd?
820@rnindex even?
821@rnindex quotient
822@rnindex remainder
823@rnindex modulo
824@rnindex gcd
825@rnindex lcm
826
827@deffn {Scheme Procedure} odd? n
828@deffnx {C Function} scm_odd_p (n)
829Return @code{#t} if @var{n} is an odd number, @code{#f}
830otherwise.
831@end deffn
832
833@deffn {Scheme Procedure} even? n
834@deffnx {C Function} scm_even_p (n)
835Return @code{#t} if @var{n} is an even number, @code{#f}
836otherwise.
837@end deffn
838
839@c begin (texi-doc-string "guile" "quotient")
840@c begin (texi-doc-string "guile" "remainder")
841@deffn {Scheme Procedure} quotient n d
842@deffnx {Scheme Procedure} remainder n d
843@deffnx {C Function} scm_quotient (n, d)
844@deffnx {C Function} scm_remainder (n, d)
845Return the quotient or remainder from @var{n} divided by @var{d}. The
846quotient is rounded towards zero, and the remainder will have the same
847sign as @var{n}. In all cases quotient and remainder satisfy
848@math{@var{n} = @var{q}*@var{d} + @var{r}}.
849
850@lisp
851(remainder 13 4) @result{} 1
852(remainder -13 4) @result{} -1
853@end lisp
854@end deffn
855
856@c begin (texi-doc-string "guile" "modulo")
857@deffn {Scheme Procedure} modulo n d
858@deffnx {C Function} scm_modulo (n, d)
859Return the remainder from @var{n} divided by @var{d}, with the same
860sign as @var{d}.
861
862@lisp
863(modulo 13 4) @result{} 1
864(modulo -13 4) @result{} 3
865(modulo 13 -4) @result{} -3
866(modulo -13 -4) @result{} -1
867@end lisp
868@end deffn
869
870@c begin (texi-doc-string "guile" "gcd")
871@deffn {Scheme Procedure} gcd
872@deffnx {C Function} scm_gcd (x, y)
873Return the greatest common divisor of all arguments.
874If called without arguments, 0 is returned.
875
876The C function @code{scm_gcd} always takes two arguments, while the
877Scheme function can take an arbitrary number.
878@end deffn
879
880@c begin (texi-doc-string "guile" "lcm")
881@deffn {Scheme Procedure} lcm
882@deffnx {C Function} scm_lcm (x, y)
883Return the least common multiple of the arguments.
884If called without arguments, 1 is returned.
885
886The C function @code{scm_lcm} always takes two arguments, while the
887Scheme function can take an arbitrary number.
888@end deffn
889
890
891@node Comparison
892@subsubsection Comparison Predicates
893@rnindex zero?
894@rnindex positive?
895@rnindex negative?
896
897The C comparison functions below always takes two arguments, while the
898Scheme functions can take an arbitrary number. Also keep in mind that
899the C functions return one of the Scheme boolean values
900@code{SCM_BOOL_T} or @code{SCM_BOOL_F} which are both true as far as C
901is concerned. Thus, always write @code{scm_is_true (scm_num_eq_p (x,
902y))} when testing the two Scheme numbers @code{x} and @code{y} for
903equality, for example.
904
905@c begin (texi-doc-string "guile" "=")
906@deffn {Scheme Procedure} =
907@deffnx {C Function} scm_num_eq_p (x, y)
908Return @code{#t} if all parameters are numerically equal.
909@end deffn
910
911@c begin (texi-doc-string "guile" "<")
912@deffn {Scheme Procedure} <
913@deffnx {C Function} scm_less_p (x, y)
914Return @code{#t} if the list of parameters is monotonically
915increasing.
916@end deffn
917
918@c begin (texi-doc-string "guile" ">")
919@deffn {Scheme Procedure} >
920@deffnx {C Function} scm_gr_p (x, y)
921Return @code{#t} if the list of parameters is monotonically
922decreasing.
923@end deffn
924
925@c begin (texi-doc-string "guile" "<=")
926@deffn {Scheme Procedure} <=
927@deffnx {C Function} scm_leq_p (x, y)
928Return @code{#t} if the list of parameters is monotonically
929non-decreasing.
930@end deffn
931
932@c begin (texi-doc-string "guile" ">=")
933@deffn {Scheme Procedure} >=
934@deffnx {C Function} scm_geq_p (x, y)
935Return @code{#t} if the list of parameters is monotonically
936non-increasing.
937@end deffn
938
939@c begin (texi-doc-string "guile" "zero?")
940@deffn {Scheme Procedure} zero? z
941@deffnx {C Function} scm_zero_p (z)
942Return @code{#t} if @var{z} is an exact or inexact number equal to
943zero.
944@end deffn
945
946@c begin (texi-doc-string "guile" "positive?")
947@deffn {Scheme Procedure} positive? x
948@deffnx {C Function} scm_positive_p (x)
949Return @code{#t} if @var{x} is an exact or inexact number greater than
950zero.
951@end deffn
952
953@c begin (texi-doc-string "guile" "negative?")
954@deffn {Scheme Procedure} negative? x
955@deffnx {C Function} scm_negative_p (x)
956Return @code{#t} if @var{x} is an exact or inexact number less than
957zero.
958@end deffn
959
960
961@node Conversion
962@subsubsection Converting Numbers To and From Strings
963@rnindex number->string
964@rnindex string->number
965
966@deffn {Scheme Procedure} number->string n [radix]
967@deffnx {C Function} scm_number_to_string (n, radix)
968Return a string holding the external representation of the
969number @var{n} in the given @var{radix}. If @var{n} is
970inexact, a radix of 10 will be used.
971@end deffn
972
973@deffn {Scheme Procedure} string->number string [radix]
974@deffnx {C Function} scm_string_to_number (string, radix)
975Return a number of the maximally precise representation
976expressed by the given @var{string}. @var{radix} must be an
977exact integer, either 2, 8, 10, or 16. If supplied, @var{radix}
978is a default radix that may be overridden by an explicit radix
979prefix in @var{string} (e.g. "#o177"). If @var{radix} is not
980supplied, then the default radix is 10. If string is not a
981syntactically valid notation for a number, then
982@code{string->number} returns @code{#f}.
983@end deffn
984
985
986@node Complex
987@subsubsection Complex Number Operations
988@rnindex make-rectangular
989@rnindex make-polar
990@rnindex real-part
991@rnindex imag-part
992@rnindex magnitude
993@rnindex angle
994
995@deffn {Scheme Procedure} make-rectangular real imaginary
996@deffnx {C Function} scm_make_rectangular (real, imaginary)
997Return a complex number constructed of the given @var{real} and
998@var{imaginary} parts.
999@end deffn
1000
1001@deffn {Scheme Procedure} make-polar x y
1002@deffnx {C Function} scm_make_polar (x, y)
1003Return the complex number @var{x} * e^(i * @var{y}).
1004@end deffn
1005
1006@c begin (texi-doc-string "guile" "real-part")
1007@deffn {Scheme Procedure} real-part z
1008@deffnx {C Function} scm_real_part (z)
1009Return the real part of the number @var{z}.
1010@end deffn
1011
1012@c begin (texi-doc-string "guile" "imag-part")
1013@deffn {Scheme Procedure} imag-part z
1014@deffnx {C Function} scm_imag_part (z)
1015Return the imaginary part of the number @var{z}.
1016@end deffn
1017
1018@c begin (texi-doc-string "guile" "magnitude")
1019@deffn {Scheme Procedure} magnitude z
1020@deffnx {C Function} scm_magnitude (z)
1021Return the magnitude of the number @var{z}. This is the same as
1022@code{abs} for real arguments, but also allows complex numbers.
1023@end deffn
1024
1025@c begin (texi-doc-string "guile" "angle")
1026@deffn {Scheme Procedure} angle z
1027@deffnx {C Function} scm_angle (z)
1028Return the angle of the complex number @var{z}.
1029@end deffn
1030
5615f696
MV
1031@deftypefn {C Function} SCM scm_c_make_rectangular (double re, double im)
1032@deftypefnx {C Function} SCM scm_c_make_polar (double x, double y)
1033Like @code{scm_make_rectangular} or @code{scm_make_polar},
1034respectively, but these functions take @code{double}s as their
1035arguments.
1036@end deftypefn
1037
1038@deftypefn {C Function} double scm_c_real_part (z)
1039@deftypefnx {C Function} double scm_c_imag_part (z)
1040Returns the real or imaginary part of @var{z} as a @code{double}.
1041@end deftypefn
1042
1043@deftypefn {C Function} double scm_c_magnitude (z)
1044@deftypefnx {C Function} double scm_c_angle (z)
1045Returns the magnitude or angle of @var{z} as a @code{double}.
1046@end deftypefn
1047
07d83abe
MV
1048
1049@node Arithmetic
1050@subsubsection Arithmetic Functions
1051@rnindex max
1052@rnindex min
1053@rnindex +
1054@rnindex *
1055@rnindex -
1056@rnindex /
1057@rnindex abs
1058@rnindex floor
1059@rnindex ceiling
1060@rnindex truncate
1061@rnindex round
1062
1063The C arithmetic functions below always takes two arguments, while the
1064Scheme functions can take an arbitrary number. When you need to
1065invoke them with just one argument, for example to compute the
1066equivalent od @code{(- x)}, pass @code{SCM_UNDEFINED} as the second
1067one: @code{scm_difference (x, SCM_UNDEFINED)}.
1068
1069@c begin (texi-doc-string "guile" "+")
1070@deffn {Scheme Procedure} + z1 @dots{}
1071@deffnx {C Function} scm_sum (z1, z2)
1072Return the sum of all parameter values. Return 0 if called without any
1073parameters.
1074@end deffn
1075
1076@c begin (texi-doc-string "guile" "-")
1077@deffn {Scheme Procedure} - z1 z2 @dots{}
1078@deffnx {C Function} scm_difference (z1, z2)
1079If called with one argument @var{z1}, -@var{z1} is returned. Otherwise
1080the sum of all but the first argument are subtracted from the first
1081argument.
1082@end deffn
1083
1084@c begin (texi-doc-string "guile" "*")
1085@deffn {Scheme Procedure} * z1 @dots{}
1086@deffnx {C Function} scm_product (z1, z2)
1087Return the product of all arguments. If called without arguments, 1 is
1088returned.
1089@end deffn
1090
1091@c begin (texi-doc-string "guile" "/")
1092@deffn {Scheme Procedure} / z1 z2 @dots{}
1093@deffnx {C Function} scm_divide (z1, z2)
1094Divide the first argument by the product of the remaining arguments. If
1095called with one argument @var{z1}, 1/@var{z1} is returned.
1096@end deffn
1097
1098@c begin (texi-doc-string "guile" "abs")
1099@deffn {Scheme Procedure} abs x
1100@deffnx {C Function} scm_abs (x)
1101Return the absolute value of @var{x}.
1102
1103@var{x} must be a number with zero imaginary part. To calculate the
1104magnitude of a complex number, use @code{magnitude} instead.
1105@end deffn
1106
1107@c begin (texi-doc-string "guile" "max")
1108@deffn {Scheme Procedure} max x1 x2 @dots{}
1109@deffnx {C Function} scm_max (x1, x2)
1110Return the maximum of all parameter values.
1111@end deffn
1112
1113@c begin (texi-doc-string "guile" "min")
1114@deffn {Scheme Procedure} min x1 x2 @dots{}
1115@deffnx {C Function} scm_min (x1, x2)
1116Return the minimum of all parameter values.
1117@end deffn
1118
1119@c begin (texi-doc-string "guile" "truncate")
1120@deffn {Scheme Procedure} truncate
1121@deffnx {C Function} scm_truncate_number (x)
1122Round the inexact number @var{x} towards zero.
1123@end deffn
1124
1125@c begin (texi-doc-string "guile" "round")
1126@deffn {Scheme Procedure} round x
1127@deffnx {C Function} scm_round_number (x)
1128Round the inexact number @var{x} to the nearest integer. When exactly
1129halfway between two integers, round to the even one.
1130@end deffn
1131
1132@c begin (texi-doc-string "guile" "floor")
1133@deffn {Scheme Procedure} floor x
1134@deffnx {C Function} scm_floor (x)
1135Round the number @var{x} towards minus infinity.
1136@end deffn
1137
1138@c begin (texi-doc-string "guile" "ceiling")
1139@deffn {Scheme Procedure} ceiling x
1140@deffnx {C Function} scm_ceiling (x)
1141Round the number @var{x} towards infinity.
1142@end deffn
1143
35da08ee
MV
1144@deftypefn {C Function} double scm_c_truncate (double x)
1145@deftypefnx {C Function} double scm_c_round (double x)
1146Like @code{scm_truncate_number} or @code{scm_round_number},
1147respectively, but these functions take and return @code{double}
1148values.
1149@end deftypefn
07d83abe
MV
1150
1151@node Scientific
1152@subsubsection Scientific Functions
1153
1154The following procedures accept any kind of number as arguments,
1155including complex numbers.
1156
1157@rnindex sqrt
1158@c begin (texi-doc-string "guile" "sqrt")
1159@deffn {Scheme Procedure} sqrt z
1160Return the square root of @var{z}.
1161@end deffn
1162
1163@rnindex expt
1164@c begin (texi-doc-string "guile" "expt")
1165@deffn {Scheme Procedure} expt z1 z2
1166Return @var{z1} raised to the power of @var{z2}.
1167@end deffn
1168
1169@rnindex sin
1170@c begin (texi-doc-string "guile" "sin")
1171@deffn {Scheme Procedure} sin z
1172Return the sine of @var{z}.
1173@end deffn
1174
1175@rnindex cos
1176@c begin (texi-doc-string "guile" "cos")
1177@deffn {Scheme Procedure} cos z
1178Return the cosine of @var{z}.
1179@end deffn
1180
1181@rnindex tan
1182@c begin (texi-doc-string "guile" "tan")
1183@deffn {Scheme Procedure} tan z
1184Return the tangent of @var{z}.
1185@end deffn
1186
1187@rnindex asin
1188@c begin (texi-doc-string "guile" "asin")
1189@deffn {Scheme Procedure} asin z
1190Return the arcsine of @var{z}.
1191@end deffn
1192
1193@rnindex acos
1194@c begin (texi-doc-string "guile" "acos")
1195@deffn {Scheme Procedure} acos z
1196Return the arccosine of @var{z}.
1197@end deffn
1198
1199@rnindex atan
1200@c begin (texi-doc-string "guile" "atan")
1201@deffn {Scheme Procedure} atan z
1202@deffnx {Scheme Procedure} atan y x
1203Return the arctangent of @var{z}, or of @math{@var{y}/@var{x}}.
1204@end deffn
1205
1206@rnindex exp
1207@c begin (texi-doc-string "guile" "exp")
1208@deffn {Scheme Procedure} exp z
1209Return e to the power of @var{z}, where e is the base of natural
1210logarithms (2.71828@dots{}).
1211@end deffn
1212
1213@rnindex log
1214@c begin (texi-doc-string "guile" "log")
1215@deffn {Scheme Procedure} log z
1216Return the natural logarithm of @var{z}.
1217@end deffn
1218
1219@c begin (texi-doc-string "guile" "log10")
1220@deffn {Scheme Procedure} log10 z
1221Return the base 10 logarithm of @var{z}.
1222@end deffn
1223
1224@c begin (texi-doc-string "guile" "sinh")
1225@deffn {Scheme Procedure} sinh z
1226Return the hyperbolic sine of @var{z}.
1227@end deffn
1228
1229@c begin (texi-doc-string "guile" "cosh")
1230@deffn {Scheme Procedure} cosh z
1231Return the hyperbolic cosine of @var{z}.
1232@end deffn
1233
1234@c begin (texi-doc-string "guile" "tanh")
1235@deffn {Scheme Procedure} tanh z
1236Return the hyperbolic tangent of @var{z}.
1237@end deffn
1238
1239@c begin (texi-doc-string "guile" "asinh")
1240@deffn {Scheme Procedure} asinh z
1241Return the hyperbolic arcsine of @var{z}.
1242@end deffn
1243
1244@c begin (texi-doc-string "guile" "acosh")
1245@deffn {Scheme Procedure} acosh z
1246Return the hyperbolic arccosine of @var{z}.
1247@end deffn
1248
1249@c begin (texi-doc-string "guile" "atanh")
1250@deffn {Scheme Procedure} atanh z
1251Return the hyperbolic arctangent of @var{z}.
1252@end deffn
1253
1254
1255@node Primitive Numerics
1256@subsubsection Primitive Numeric Functions
1257
1258Many of Guile's numeric procedures which accept any kind of numbers as
1259arguments, including complex numbers, are implemented as Scheme
1260procedures that use the following real number-based primitives. These
1261primitives signal an error if they are called with complex arguments.
1262
1263@c begin (texi-doc-string "guile" "$abs")
1264@deffn {Scheme Procedure} $abs x
1265Return the absolute value of @var{x}.
1266@end deffn
1267
1268@c begin (texi-doc-string "guile" "$sqrt")
1269@deffn {Scheme Procedure} $sqrt x
1270Return the square root of @var{x}.
1271@end deffn
1272
1273@deffn {Scheme Procedure} $expt x y
1274@deffnx {C Function} scm_sys_expt (x, y)
1275Return @var{x} raised to the power of @var{y}. This
1276procedure does not accept complex arguments.
1277@end deffn
1278
1279@c begin (texi-doc-string "guile" "$sin")
1280@deffn {Scheme Procedure} $sin x
1281Return the sine of @var{x}.
1282@end deffn
1283
1284@c begin (texi-doc-string "guile" "$cos")
1285@deffn {Scheme Procedure} $cos x
1286Return the cosine of @var{x}.
1287@end deffn
1288
1289@c begin (texi-doc-string "guile" "$tan")
1290@deffn {Scheme Procedure} $tan x
1291Return the tangent of @var{x}.
1292@end deffn
1293
1294@c begin (texi-doc-string "guile" "$asin")
1295@deffn {Scheme Procedure} $asin x
1296Return the arcsine of @var{x}.
1297@end deffn
1298
1299@c begin (texi-doc-string "guile" "$acos")
1300@deffn {Scheme Procedure} $acos x
1301Return the arccosine of @var{x}.
1302@end deffn
1303
1304@c begin (texi-doc-string "guile" "$atan")
1305@deffn {Scheme Procedure} $atan x
1306Return the arctangent of @var{x} in the range @minus{}@math{PI/2} to
1307@math{PI/2}.
1308@end deffn
1309
1310@deffn {Scheme Procedure} $atan2 x y
1311@deffnx {C Function} scm_sys_atan2 (x, y)
1312Return the arc tangent of the two arguments @var{x} and
1313@var{y}. This is similar to calculating the arc tangent of
1314@var{x} / @var{y}, except that the signs of both arguments
1315are used to determine the quadrant of the result. This
1316procedure does not accept complex arguments.
1317@end deffn
1318
1319@c begin (texi-doc-string "guile" "$exp")
1320@deffn {Scheme Procedure} $exp x
1321Return e to the power of @var{x}, where e is the base of natural
1322logarithms (2.71828@dots{}).
1323@end deffn
1324
1325@c begin (texi-doc-string "guile" "$log")
1326@deffn {Scheme Procedure} $log x
1327Return the natural logarithm of @var{x}.
1328@end deffn
1329
1330@c begin (texi-doc-string "guile" "$sinh")
1331@deffn {Scheme Procedure} $sinh x
1332Return the hyperbolic sine of @var{x}.
1333@end deffn
1334
1335@c begin (texi-doc-string "guile" "$cosh")
1336@deffn {Scheme Procedure} $cosh x
1337Return the hyperbolic cosine of @var{x}.
1338@end deffn
1339
1340@c begin (texi-doc-string "guile" "$tanh")
1341@deffn {Scheme Procedure} $tanh x
1342Return the hyperbolic tangent of @var{x}.
1343@end deffn
1344
1345@c begin (texi-doc-string "guile" "$asinh")
1346@deffn {Scheme Procedure} $asinh x
1347Return the hyperbolic arcsine of @var{x}.
1348@end deffn
1349
1350@c begin (texi-doc-string "guile" "$acosh")
1351@deffn {Scheme Procedure} $acosh x
1352Return the hyperbolic arccosine of @var{x}.
1353@end deffn
1354
1355@c begin (texi-doc-string "guile" "$atanh")
1356@deffn {Scheme Procedure} $atanh x
1357Return the hyperbolic arctangent of @var{x}.
1358@end deffn
1359
1360C functions for the above are provided by the standard mathematics
1361library. Naturally these expect and return @code{double} arguments
1362(@pxref{Mathematics,,, libc, GNU C Library Reference Manual}).
1363
1364@multitable {xx} {Scheme Procedure} {C Function}
1365@item @tab Scheme Procedure @tab C Function
1366
1367@item @tab @code{$abs} @tab @code{fabs}
1368@item @tab @code{$sqrt} @tab @code{sqrt}
1369@item @tab @code{$sin} @tab @code{sin}
1370@item @tab @code{$cos} @tab @code{cos}
1371@item @tab @code{$tan} @tab @code{tan}
1372@item @tab @code{$asin} @tab @code{asin}
1373@item @tab @code{$acos} @tab @code{acos}
1374@item @tab @code{$atan} @tab @code{atan}
1375@item @tab @code{$atan2} @tab @code{atan2}
1376@item @tab @code{$exp} @tab @code{exp}
1377@item @tab @code{$expt} @tab @code{pow}
1378@item @tab @code{$log} @tab @code{log}
1379@item @tab @code{$sinh} @tab @code{sinh}
1380@item @tab @code{$cosh} @tab @code{cosh}
1381@item @tab @code{$tanh} @tab @code{tanh}
1382@item @tab @code{$asinh} @tab @code{asinh}
1383@item @tab @code{$acosh} @tab @code{acosh}
1384@item @tab @code{$atanh} @tab @code{atanh}
1385@end multitable
1386
1387@code{asinh}, @code{acosh} and @code{atanh} are C99 standard but might
1388not be available on older systems. Guile provides the following
1389equivalents (on all systems).
1390
1391@deftypefn {C Function} double scm_asinh (double x)
1392@deftypefnx {C Function} double scm_acosh (double x)
1393@deftypefnx {C Function} double scm_atanh (double x)
1394Return the hyperbolic arcsine, arccosine or arctangent of @var{x}
1395respectively.
1396@end deftypefn
1397
1398
1399@node Bitwise Operations
1400@subsubsection Bitwise Operations
1401
1402For the following bitwise functions, negative numbers are treated as
1403infinite precision twos-complements. For instance @math{-6} is bits
1404@math{@dots{}111010}, with infinitely many ones on the left. It can
1405be seen that adding 6 (binary 110) to such a bit pattern gives all
1406zeros.
1407
1408@deffn {Scheme Procedure} logand n1 n2 @dots{}
1409@deffnx {C Function} scm_logand (n1, n2)
1410Return the bitwise @sc{and} of the integer arguments.
1411
1412@lisp
1413(logand) @result{} -1
1414(logand 7) @result{} 7
1415(logand #b111 #b011 #b001) @result{} 1
1416@end lisp
1417@end deffn
1418
1419@deffn {Scheme Procedure} logior n1 n2 @dots{}
1420@deffnx {C Function} scm_logior (n1, n2)
1421Return the bitwise @sc{or} of the integer arguments.
1422
1423@lisp
1424(logior) @result{} 0
1425(logior 7) @result{} 7
1426(logior #b000 #b001 #b011) @result{} 3
1427@end lisp
1428@end deffn
1429
1430@deffn {Scheme Procedure} logxor n1 n2 @dots{}
1431@deffnx {C Function} scm_loxor (n1, n2)
1432Return the bitwise @sc{xor} of the integer arguments. A bit is
1433set in the result if it is set in an odd number of arguments.
1434
1435@lisp
1436(logxor) @result{} 0
1437(logxor 7) @result{} 7
1438(logxor #b000 #b001 #b011) @result{} 2
1439(logxor #b000 #b001 #b011 #b011) @result{} 1
1440@end lisp
1441@end deffn
1442
1443@deffn {Scheme Procedure} lognot n
1444@deffnx {C Function} scm_lognot (n)
1445Return the integer which is the ones-complement of the integer
1446argument, ie.@: each 0 bit is changed to 1 and each 1 bit to 0.
1447
1448@lisp
1449(number->string (lognot #b10000000) 2)
1450 @result{} "-10000001"
1451(number->string (lognot #b0) 2)
1452 @result{} "-1"
1453@end lisp
1454@end deffn
1455
1456@deffn {Scheme Procedure} logtest j k
1457@deffnx {C Function} scm_logtest (j, k)
1458@lisp
1459(logtest j k) @equiv{} (not (zero? (logand j k)))
1460
1461(logtest #b0100 #b1011) @result{} #f
1462(logtest #b0100 #b0111) @result{} #t
1463@end lisp
1464@end deffn
1465
1466@deffn {Scheme Procedure} logbit? index j
1467@deffnx {C Function} scm_logbit_p (index, j)
1468@lisp
1469(logbit? index j) @equiv{} (logtest (integer-expt 2 index) j)
1470
1471(logbit? 0 #b1101) @result{} #t
1472(logbit? 1 #b1101) @result{} #f
1473(logbit? 2 #b1101) @result{} #t
1474(logbit? 3 #b1101) @result{} #t
1475(logbit? 4 #b1101) @result{} #f
1476@end lisp
1477@end deffn
1478
1479@deffn {Scheme Procedure} ash n cnt
1480@deffnx {C Function} scm_ash (n, cnt)
1481Return @var{n} shifted left by @var{cnt} bits, or shifted right if
1482@var{cnt} is negative. This is an ``arithmetic'' shift.
1483
1484This is effectively a multiplication by @m{2^{cnt}, 2^@var{cnt}}, and
1485when @var{cnt} is negative it's a division, rounded towards negative
1486infinity. (Note that this is not the same rounding as @code{quotient}
1487does.)
1488
1489With @var{n} viewed as an infinite precision twos complement,
1490@code{ash} means a left shift introducing zero bits, or a right shift
1491dropping bits.
1492
1493@lisp
1494(number->string (ash #b1 3) 2) @result{} "1000"
1495(number->string (ash #b1010 -1) 2) @result{} "101"
1496
1497;; -23 is bits ...11101001, -6 is bits ...111010
1498(ash -23 -2) @result{} -6
1499@end lisp
1500@end deffn
1501
1502@deffn {Scheme Procedure} logcount n
1503@deffnx {C Function} scm_logcount (n)
1504Return the number of bits in integer @var{n}. If integer is
1505positive, the 1-bits in its binary representation are counted.
1506If negative, the 0-bits in its two's-complement binary
1507representation are counted. If 0, 0 is returned.
1508
1509@lisp
1510(logcount #b10101010)
1511 @result{} 4
1512(logcount 0)
1513 @result{} 0
1514(logcount -2)
1515 @result{} 1
1516@end lisp
1517@end deffn
1518
1519@deffn {Scheme Procedure} integer-length n
1520@deffnx {C Function} scm_integer_length (n)
1521Return the number of bits necessary to represent @var{n}.
1522
1523For positive @var{n} this is how many bits to the most significant one
1524bit. For negative @var{n} it's how many bits to the most significant
1525zero bit in twos complement form.
1526
1527@lisp
1528(integer-length #b10101010) @result{} 8
1529(integer-length #b1111) @result{} 4
1530(integer-length 0) @result{} 0
1531(integer-length -1) @result{} 0
1532(integer-length -256) @result{} 8
1533(integer-length -257) @result{} 9
1534@end lisp
1535@end deffn
1536
1537@deffn {Scheme Procedure} integer-expt n k
1538@deffnx {C Function} scm_integer_expt (n, k)
1539Return @var{n} raised to the non-negative integer exponent
1540@var{k}.
1541
1542@lisp
1543(integer-expt 2 5)
1544 @result{} 32
1545(integer-expt -3 3)
1546 @result{} -27
1547@end lisp
1548@end deffn
1549
1550@deffn {Scheme Procedure} bit-extract n start end
1551@deffnx {C Function} scm_bit_extract (n, start, end)
1552Return the integer composed of the @var{start} (inclusive)
1553through @var{end} (exclusive) bits of @var{n}. The
1554@var{start}th bit becomes the 0-th bit in the result.
1555
1556@lisp
1557(number->string (bit-extract #b1101101010 0 4) 2)
1558 @result{} "1010"
1559(number->string (bit-extract #b1101101010 4 9) 2)
1560 @result{} "10110"
1561@end lisp
1562@end deffn
1563
1564
1565@node Random
1566@subsubsection Random Number Generation
1567
1568Pseudo-random numbers are generated from a random state object, which
1569can be created with @code{seed->random-state}. The @var{state}
1570parameter to the various functions below is optional, it defaults to
1571the state object in the @code{*random-state*} variable.
1572
1573@deffn {Scheme Procedure} copy-random-state [state]
1574@deffnx {C Function} scm_copy_random_state (state)
1575Return a copy of the random state @var{state}.
1576@end deffn
1577
1578@deffn {Scheme Procedure} random n [state]
1579@deffnx {C Function} scm_random (n, state)
1580Return a number in [0, @var{n}).
1581
1582Accepts a positive integer or real n and returns a
1583number of the same type between zero (inclusive) and
1584@var{n} (exclusive). The values returned have a uniform
1585distribution.
1586@end deffn
1587
1588@deffn {Scheme Procedure} random:exp [state]
1589@deffnx {C Function} scm_random_exp (state)
1590Return an inexact real in an exponential distribution with mean
15911. For an exponential distribution with mean @var{u} use @code{(*
1592@var{u} (random:exp))}.
1593@end deffn
1594
1595@deffn {Scheme Procedure} random:hollow-sphere! vect [state]
1596@deffnx {C Function} scm_random_hollow_sphere_x (vect, state)
1597Fills @var{vect} with inexact real random numbers the sum of whose
1598squares is equal to 1.0. Thinking of @var{vect} as coordinates in
1599space of dimension @var{n} @math{=} @code{(vector-length @var{vect})},
1600the coordinates are uniformly distributed over the surface of the unit
1601n-sphere.
1602@end deffn
1603
1604@deffn {Scheme Procedure} random:normal [state]
1605@deffnx {C Function} scm_random_normal (state)
1606Return an inexact real in a normal distribution. The distribution
1607used has mean 0 and standard deviation 1. For a normal distribution
1608with mean @var{m} and standard deviation @var{d} use @code{(+ @var{m}
1609(* @var{d} (random:normal)))}.
1610@end deffn
1611
1612@deffn {Scheme Procedure} random:normal-vector! vect [state]
1613@deffnx {C Function} scm_random_normal_vector_x (vect, state)
1614Fills @var{vect} with inexact real random numbers that are
1615independent and standard normally distributed
1616(i.e., with mean 0 and variance 1).
1617@end deffn
1618
1619@deffn {Scheme Procedure} random:solid-sphere! vect [state]
1620@deffnx {C Function} scm_random_solid_sphere_x (vect, state)
1621Fills @var{vect} with inexact real random numbers the sum of whose
1622squares is less than 1.0. Thinking of @var{vect} as coordinates in
1623space of dimension @var{n} @math{=} @code{(vector-length @var{vect})},
1624the coordinates are uniformly distributed within the unit
1625@var{n}-sphere. The sum of the squares of the numbers is returned.
1626@c FIXME: What does this mean, particularly the n-sphere part?
1627@end deffn
1628
1629@deffn {Scheme Procedure} random:uniform [state]
1630@deffnx {C Function} scm_random_uniform (state)
1631Return a uniformly distributed inexact real random number in
1632[0,1).
1633@end deffn
1634
1635@deffn {Scheme Procedure} seed->random-state seed
1636@deffnx {C Function} scm_seed_to_random_state (seed)
1637Return a new random state using @var{seed}.
1638@end deffn
1639
1640@defvar *random-state*
1641The global random state used by the above functions when the
1642@var{state} parameter is not given.
1643@end defvar
1644
1645
1646@node Characters
1647@subsection Characters
1648@tpindex Characters
1649
1650@noindent
1651[@strong{FIXME}: how do you specify regular (non-control) characters?]
1652
1653Most of the ``control characters'' (those below codepoint 32) in the
1654@acronym{ASCII} character set, as well as the space, may be referred
1655to by name: for example, @code{#\tab}, @code{#\esc}, @code{#\stx}, and
1656so on. The following table describes the @acronym{ASCII} names for
1657each character.
1658
1659@multitable @columnfractions .25 .25 .25 .25
1660@item 0 = @code{#\nul}
1661 @tab 1 = @code{#\soh}
1662 @tab 2 = @code{#\stx}
1663 @tab 3 = @code{#\etx}
1664@item 4 = @code{#\eot}
1665 @tab 5 = @code{#\enq}
1666 @tab 6 = @code{#\ack}
1667 @tab 7 = @code{#\bel}
1668@item 8 = @code{#\bs}
1669 @tab 9 = @code{#\ht}
1670 @tab 10 = @code{#\nl}
1671 @tab 11 = @code{#\vt}
1672@item 12 = @code{#\np}
1673 @tab 13 = @code{#\cr}
1674 @tab 14 = @code{#\so}
1675 @tab 15 = @code{#\si}
1676@item 16 = @code{#\dle}
1677 @tab 17 = @code{#\dc1}
1678 @tab 18 = @code{#\dc2}
1679 @tab 19 = @code{#\dc3}
1680@item 20 = @code{#\dc4}
1681 @tab 21 = @code{#\nak}
1682 @tab 22 = @code{#\syn}
1683 @tab 23 = @code{#\etb}
1684@item 24 = @code{#\can}
1685 @tab 25 = @code{#\em}
1686 @tab 26 = @code{#\sub}
1687 @tab 27 = @code{#\esc}
1688@item 28 = @code{#\fs}
1689 @tab 29 = @code{#\gs}
1690 @tab 30 = @code{#\rs}
1691 @tab 31 = @code{#\us}
1692@item 32 = @code{#\sp}
1693@end multitable
1694
1695The ``delete'' character (octal 177) may be referred to with the name
1696@code{#\del}.
1697
1698Several characters have more than one name:
1699
1700@multitable {@code{#\backspace}} {Original}
1701@item Alias @tab Original
1702@item @code{#\space} @tab @code{#\sp}
1703@item @code{#\newline} @tab @code{#\nl}
1704@item @code{#\tab} @tab @code{#\ht}
1705@item @code{#\backspace} @tab @code{#\bs}
1706@item @code{#\return} @tab @code{#\cr}
1707@item @code{#\page} @tab @code{#\np}
1708@item @code{#\null} @tab @code{#\nul}
1709@end multitable
1710
1711@rnindex char?
1712@deffn {Scheme Procedure} char? x
1713@deffnx {C Function} scm_char_p (x)
1714Return @code{#t} iff @var{x} is a character, else @code{#f}.
1715@end deffn
1716
1717@rnindex char=?
1718@deffn {Scheme Procedure} char=? x y
1719Return @code{#t} iff @var{x} is the same character as @var{y}, else @code{#f}.
1720@end deffn
1721
1722@rnindex char<?
1723@deffn {Scheme Procedure} char<? x y
1724Return @code{#t} iff @var{x} is less than @var{y} in the @acronym{ASCII} sequence,
1725else @code{#f}.
1726@end deffn
1727
1728@rnindex char<=?
1729@deffn {Scheme Procedure} char<=? x y
1730Return @code{#t} iff @var{x} is less than or equal to @var{y} in the
1731@acronym{ASCII} sequence, else @code{#f}.
1732@end deffn
1733
1734@rnindex char>?
1735@deffn {Scheme Procedure} char>? x y
1736Return @code{#t} iff @var{x} is greater than @var{y} in the @acronym{ASCII}
1737sequence, else @code{#f}.
1738@end deffn
1739
1740@rnindex char>=?
1741@deffn {Scheme Procedure} char>=? x y
1742Return @code{#t} iff @var{x} is greater than or equal to @var{y} in the
1743@acronym{ASCII} sequence, else @code{#f}.
1744@end deffn
1745
1746@rnindex char-ci=?
1747@deffn {Scheme Procedure} char-ci=? x y
1748Return @code{#t} iff @var{x} is the same character as @var{y} ignoring
1749case, else @code{#f}.
1750@end deffn
1751
1752@rnindex char-ci<?
1753@deffn {Scheme Procedure} char-ci<? x y
1754Return @code{#t} iff @var{x} is less than @var{y} in the @acronym{ASCII} sequence
1755ignoring case, else @code{#f}.
1756@end deffn
1757
1758@rnindex char-ci<=?
1759@deffn {Scheme Procedure} char-ci<=? x y
1760Return @code{#t} iff @var{x} is less than or equal to @var{y} in the
1761@acronym{ASCII} sequence ignoring case, else @code{#f}.
1762@end deffn
1763
1764@rnindex char-ci>?
1765@deffn {Scheme Procedure} char-ci>? x y
1766Return @code{#t} iff @var{x} is greater than @var{y} in the @acronym{ASCII}
1767sequence ignoring case, else @code{#f}.
1768@end deffn
1769
1770@rnindex char-ci>=?
1771@deffn {Scheme Procedure} char-ci>=? x y
1772Return @code{#t} iff @var{x} is greater than or equal to @var{y} in the
1773@acronym{ASCII} sequence ignoring case, else @code{#f}.
1774@end deffn
1775
1776@rnindex char-alphabetic?
1777@deffn {Scheme Procedure} char-alphabetic? chr
1778@deffnx {C Function} scm_char_alphabetic_p (chr)
1779Return @code{#t} iff @var{chr} is alphabetic, else @code{#f}.
1780Alphabetic means the same thing as the @code{isalpha} C library function.
1781@end deffn
1782
1783@rnindex char-numeric?
1784@deffn {Scheme Procedure} char-numeric? chr
1785@deffnx {C Function} scm_char_numeric_p (chr)
1786Return @code{#t} iff @var{chr} is numeric, else @code{#f}.
1787Numeric means the same thing as the @code{isdigit} C library function.
1788@end deffn
1789
1790@rnindex char-whitespace?
1791@deffn {Scheme Procedure} char-whitespace? chr
1792@deffnx {C Function} scm_char_whitespace_p (chr)
1793Return @code{#t} iff @var{chr} is whitespace, else @code{#f}.
1794Whitespace means the same thing as the @code{isspace} C library function.
1795@end deffn
1796
1797@rnindex char-upper-case?
1798@deffn {Scheme Procedure} char-upper-case? chr
1799@deffnx {C Function} scm_char_upper_case_p (chr)
1800Return @code{#t} iff @var{chr} is uppercase, else @code{#f}.
1801Uppercase means the same thing as the @code{isupper} C library function.
1802@end deffn
1803
1804@rnindex char-lower-case?
1805@deffn {Scheme Procedure} char-lower-case? chr
1806@deffnx {C Function} scm_char_lower_case_p (chr)
1807Return @code{#t} iff @var{chr} is lowercase, else @code{#f}.
1808Lowercase means the same thing as the @code{islower} C library function.
1809@end deffn
1810
1811@deffn {Scheme Procedure} char-is-both? chr
1812@deffnx {C Function} scm_char_is_both_p (chr)
1813Return @code{#t} iff @var{chr} is either uppercase or lowercase, else
1814@code{#f}. Uppercase and lowercase are as defined by the
1815@code{isupper} and @code{islower} C library functions.
1816@end deffn
1817
1818@rnindex char->integer
1819@deffn {Scheme Procedure} char->integer chr
1820@deffnx {C Function} scm_char_to_integer (chr)
1821Return the number corresponding to ordinal position of @var{chr} in the
1822@acronym{ASCII} sequence.
1823@end deffn
1824
1825@rnindex integer->char
1826@deffn {Scheme Procedure} integer->char n
1827@deffnx {C Function} scm_integer_to_char (n)
1828Return the character at position @var{n} in the @acronym{ASCII} sequence.
1829@end deffn
1830
1831@rnindex char-upcase
1832@deffn {Scheme Procedure} char-upcase chr
1833@deffnx {C Function} scm_char_upcase (chr)
1834Return the uppercase character version of @var{chr}.
1835@end deffn
1836
1837@rnindex char-downcase
1838@deffn {Scheme Procedure} char-downcase chr
1839@deffnx {C Function} scm_char_downcase (chr)
1840Return the lowercase character version of @var{chr}.
1841@end deffn
1842
1843@xref{Classification of Characters,,,libc,GNU C Library Reference
1844Manual}, for information about the @code{is*} Standard C functions
1845mentioned above.
1846
1847
1848@node Strings
1849@subsection Strings
1850@tpindex Strings
1851
1852Strings are fixed-length sequences of characters. They can be created
1853by calling constructor procedures, but they can also literally get
1854entered at the @acronym{REPL} or in Scheme source files.
1855
1856@c Guile provides a rich set of string processing procedures, because text
1857@c handling is very important when Guile is used as a scripting language.
1858
1859Strings always carry the information about how many characters they are
1860composed of with them, so there is no special end-of-string character,
1861like in C. That means that Scheme strings can contain any character,
1862even the @samp{NUL} character @samp{\0}. But note: Since most operating
1863system calls dealing with strings (such as for file operations) expect
1864strings to be zero-terminated, they might do unexpected things when
1865called with string containing unusual characters.
1866
1867@menu
1868* String Syntax:: Read syntax for strings.
1869* String Predicates:: Testing strings for certain properties.
1870* String Constructors:: Creating new string objects.
1871* List/String Conversion:: Converting from/to lists of characters.
1872* String Selection:: Select portions from strings.
1873* String Modification:: Modify parts or whole strings.
1874* String Comparison:: Lexicographic ordering predicates.
1875* String Searching:: Searching in strings.
1876* Alphabetic Case Mapping:: Convert the alphabetic case of strings.
1877* Appending Strings:: Appending strings to form a new string.
91210d62 1878* Conversion to/from C::
07d83abe
MV
1879@end menu
1880
1881@node String Syntax
1882@subsubsection String Read Syntax
1883
1884@c In the following @code is used to get a good font in TeX etc, but
1885@c is omitted for Info format, so as not to risk any confusion over
1886@c whether surrounding ` ' quotes are part of the escape or are
1887@c special in a string (they're not).
1888
1889The read syntax for strings is an arbitrarily long sequence of
1890characters enclosed in double quotes (@nicode{"}). @footnote{Actually,
1891the current implementation restricts strings to a length of
1892@math{2^24}, or 16,777,216, characters. Sorry.}
1893
1894Backslash is an escape character and can be used to insert the
1895following special characters. @nicode{\"} and @nicode{\\} are R5RS
1896standard, the rest are Guile extensions, notice they follow C string
1897syntax.
1898
1899@table @asis
1900@item @nicode{\\}
1901Backslash character.
1902
1903@item @nicode{\"}
1904Double quote character (an unescaped @nicode{"} is otherwise the end
1905of the string).
1906
1907@item @nicode{\0}
1908NUL character (ASCII 0).
1909
1910@item @nicode{\a}
1911Bell character (ASCII 7).
1912
1913@item @nicode{\f}
1914Formfeed character (ASCII 12).
1915
1916@item @nicode{\n}
1917Newline character (ASCII 10).
1918
1919@item @nicode{\r}
1920Carriage return character (ASCII 13).
1921
1922@item @nicode{\t}
1923Tab character (ASCII 9).
1924
1925@item @nicode{\v}
1926Vertical tab character (ASCII 11).
1927
1928@item @nicode{\xHH}
1929Character code given by two hexadecimal digits. For example
1930@nicode{\x7f} for an ASCII DEL (127).
1931@end table
1932
1933@noindent
1934The following are examples of string literals:
1935
1936@lisp
1937"foo"
1938"bar plonk"
1939"Hello World"
1940"\"Hi\", he said."
1941@end lisp
1942
1943
1944@node String Predicates
1945@subsubsection String Predicates
1946
1947The following procedures can be used to check whether a given string
1948fulfills some specified property.
1949
1950@rnindex string?
1951@deffn {Scheme Procedure} string? obj
1952@deffnx {C Function} scm_string_p (obj)
1953Return @code{#t} if @var{obj} is a string, else @code{#f}.
1954@end deffn
1955
91210d62
MV
1956@deftypefn {C Function} int scm_is_string (SCM obj)
1957Returns @code{1} if @var{obj} is a string, @code{0} otherwise.
1958@end deftypefn
1959
07d83abe
MV
1960@deffn {Scheme Procedure} string-null? str
1961@deffnx {C Function} scm_string_null_p (str)
1962Return @code{#t} if @var{str}'s length is zero, and
1963@code{#f} otherwise.
1964@lisp
1965(string-null? "") @result{} #t
1966y @result{} "foo"
1967(string-null? y) @result{} #f
1968@end lisp
1969@end deffn
1970
1971@node String Constructors
1972@subsubsection String Constructors
1973
1974The string constructor procedures create new string objects, possibly
1975initializing them with some specified character data.
1976
1977@c FIXME::martin: list->string belongs into `List/String Conversion'
1978
1979@rnindex string
1980@rnindex list->string
1981@deffn {Scheme Procedure} string . chrs
1982@deffnx {Scheme Procedure} list->string chrs
1983@deffnx {C Function} scm_string (chrs)
1984Return a newly allocated string composed of the arguments,
1985@var{chrs}.
1986@end deffn
1987
1988@rnindex make-string
1989@deffn {Scheme Procedure} make-string k [chr]
1990@deffnx {C Function} scm_make_string (k, chr)
1991Return a newly allocated string of
1992length @var{k}. If @var{chr} is given, then all elements of
1993the string are initialized to @var{chr}, otherwise the contents
1994of the @var{string} are unspecified.
1995@end deffn
1996
1997@node List/String Conversion
1998@subsubsection List/String conversion
1999
2000When processing strings, it is often convenient to first convert them
2001into a list representation by using the procedure @code{string->list},
2002work with the resulting list, and then convert it back into a string.
2003These procedures are useful for similar tasks.
2004
2005@rnindex string->list
2006@deffn {Scheme Procedure} string->list str
2007@deffnx {C Function} scm_string_to_list (str)
2008Return a newly allocated list of the characters that make up
2009the given string @var{str}. @code{string->list} and
2010@code{list->string} are inverses as far as @samp{equal?} is
2011concerned.
2012@end deffn
2013
2014@deffn {Scheme Procedure} string-split str chr
2015@deffnx {C Function} scm_string_split (str, chr)
2016Split the string @var{str} into the a list of the substrings delimited
2017by appearances of the character @var{chr}. Note that an empty substring
2018between separator characters will result in an empty string in the
2019result list.
2020
2021@lisp
2022(string-split "root:x:0:0:root:/root:/bin/bash" #\:)
2023@result{}
2024("root" "x" "0" "0" "root" "/root" "/bin/bash")
2025
2026(string-split "::" #\:)
2027@result{}
2028("" "" "")
2029
2030(string-split "" #\:)
2031@result{}
2032("")
2033@end lisp
2034@end deffn
2035
2036
2037@node String Selection
2038@subsubsection String Selection
2039
2040Portions of strings can be extracted by these procedures.
2041@code{string-ref} delivers individual characters whereas
2042@code{substring} can be used to extract substrings from longer strings.
2043
2044@rnindex string-length
2045@deffn {Scheme Procedure} string-length string
2046@deffnx {C Function} scm_string_length (string)
2047Return the number of characters in @var{string}.
2048@end deffn
2049
2050@rnindex string-ref
2051@deffn {Scheme Procedure} string-ref str k
2052@deffnx {C Function} scm_string_ref (str, k)
2053Return character @var{k} of @var{str} using zero-origin
2054indexing. @var{k} must be a valid index of @var{str}.
2055@end deffn
2056
2057@rnindex string-copy
2058@deffn {Scheme Procedure} string-copy str
2059@deffnx {C Function} scm_string_copy (str)
2060Return a newly allocated copy of the given @var{string}.
2061@end deffn
2062
2063@rnindex substring
2064@deffn {Scheme Procedure} substring str start [end]
2065@deffnx {C Function} scm_substring (str, start, end)
2066Return a newly allocated string formed from the characters
2067of @var{str} beginning with index @var{start} (inclusive) and
2068ending with index @var{end} (exclusive).
2069@var{str} must be a string, @var{start} and @var{end} must be
2070exact integers satisfying:
2071
20720 <= @var{start} <= @var{end} <= @code{(string-length @var{str})}.
2073@end deffn
2074
2075@node String Modification
2076@subsubsection String Modification
2077
2078These procedures are for modifying strings in-place. This means that the
2079result of the operation is not a new string; instead, the original string's
2080memory representation is modified.
2081
2082@rnindex string-set!
2083@deffn {Scheme Procedure} string-set! str k chr
2084@deffnx {C Function} scm_string_set_x (str, k, chr)
2085Store @var{chr} in element @var{k} of @var{str} and return
2086an unspecified value. @var{k} must be a valid index of
2087@var{str}.
2088@end deffn
2089
2090@rnindex string-fill!
2091@deffn {Scheme Procedure} string-fill! str chr
2092@deffnx {C Function} scm_string_fill_x (str, chr)
2093Store @var{char} in every element of the given @var{string} and
2094return an unspecified value.
2095@end deffn
2096
2097@deffn {Scheme Procedure} substring-fill! str start end fill
2098@deffnx {C Function} scm_substring_fill_x (str, start, end, fill)
2099Change every character in @var{str} between @var{start} and
2100@var{end} to @var{fill}.
2101
2102@lisp
2103(define y "abcdefg")
2104(substring-fill! y 1 3 #\r)
2105y
2106@result{} "arrdefg"
2107@end lisp
2108@end deffn
2109
2110@deffn {Scheme Procedure} substring-move! str1 start1 end1 str2 start2
2111@deffnx {C Function} scm_substring_move_x (str1, start1, end1, str2, start2)
2112Copy the substring of @var{str1} bounded by @var{start1} and @var{end1}
2113into @var{str2} beginning at position @var{start2}.
2114@var{str1} and @var{str2} can be the same string.
2115@end deffn
2116
2117
2118@node String Comparison
2119@subsubsection String Comparison
2120
2121The procedures in this section are similar to the character ordering
2122predicates (@pxref{Characters}), but are defined on character sequences.
2123They all return @code{#t} on success and @code{#f} on failure. The
2124predicates ending in @code{-ci} ignore the character case when comparing
2125strings.
2126
2127
2128@rnindex string=?
2129@deffn {Scheme Procedure} string=? s1 s2
2130Lexicographic equality predicate; return @code{#t} if the two
2131strings are the same length and contain the same characters in
2132the same positions, otherwise return @code{#f}.
2133
2134The procedure @code{string-ci=?} treats upper and lower case
2135letters as though they were the same character, but
2136@code{string=?} treats upper and lower case as distinct
2137characters.
2138@end deffn
2139
2140@rnindex string<?
2141@deffn {Scheme Procedure} string<? s1 s2
2142Lexicographic ordering predicate; return @code{#t} if @var{s1}
2143is lexicographically less than @var{s2}.
2144@end deffn
2145
2146@rnindex string<=?
2147@deffn {Scheme Procedure} string<=? s1 s2
2148Lexicographic ordering predicate; return @code{#t} if @var{s1}
2149is lexicographically less than or equal to @var{s2}.
2150@end deffn
2151
2152@rnindex string>?
2153@deffn {Scheme Procedure} string>? s1 s2
2154Lexicographic ordering predicate; return @code{#t} if @var{s1}
2155is lexicographically greater than @var{s2}.
2156@end deffn
2157
2158@rnindex string>=?
2159@deffn {Scheme Procedure} string>=? s1 s2
2160Lexicographic ordering predicate; return @code{#t} if @var{s1}
2161is lexicographically greater than or equal to @var{s2}.
2162@end deffn
2163
2164@rnindex string-ci=?
2165@deffn {Scheme Procedure} string-ci=? s1 s2
2166Case-insensitive string equality predicate; return @code{#t} if
2167the two strings are the same length and their component
2168characters match (ignoring case) at each position; otherwise
2169return @code{#f}.
2170@end deffn
2171
2172@rnindex string-ci<
2173@deffn {Scheme Procedure} string-ci<? s1 s2
2174Case insensitive lexicographic ordering predicate; return
2175@code{#t} if @var{s1} is lexicographically less than @var{s2}
2176regardless of case.
2177@end deffn
2178
2179@rnindex string<=?
2180@deffn {Scheme Procedure} string-ci<=? s1 s2
2181Case insensitive lexicographic ordering predicate; return
2182@code{#t} if @var{s1} is lexicographically less than or equal
2183to @var{s2} regardless of case.
2184@end deffn
2185
2186@rnindex string-ci>?
2187@deffn {Scheme Procedure} string-ci>? s1 s2
2188Case insensitive lexicographic ordering predicate; return
2189@code{#t} if @var{s1} is lexicographically greater than
2190@var{s2} regardless of case.
2191@end deffn
2192
2193@rnindex string-ci>=?
2194@deffn {Scheme Procedure} string-ci>=? s1 s2
2195Case insensitive lexicographic ordering predicate; return
2196@code{#t} if @var{s1} is lexicographically greater than or
2197equal to @var{s2} regardless of case.
2198@end deffn
2199
2200
2201@node String Searching
2202@subsubsection String Searching
2203
2204When searching for the index of a character in a string, these
2205procedures can be used.
2206
2207@deffn {Scheme Procedure} string-index str chr [frm [to]]
2208@deffnx {C Function} scm_string_index (str, chr, frm, to)
2209Return the index of the first occurrence of @var{chr} in
2210@var{str}. The optional integer arguments @var{frm} and
2211@var{to} limit the search to a portion of the string. This
2212procedure essentially implements the @code{index} or
2213@code{strchr} functions from the C library.
2214
2215@lisp
2216(string-index "weiner" #\e)
2217@result{} 1
2218
2219(string-index "weiner" #\e 2)
2220@result{} 4
2221
2222(string-index "weiner" #\e 2 4)
2223@result{} #f
2224@end lisp
2225@end deffn
2226
2227@deffn {Scheme Procedure} string-rindex str chr [frm [to]]
2228@deffnx {C Function} scm_string_rindex (str, chr, frm, to)
2229Like @code{string-index}, but search from the right of the
2230string rather than from the left. This procedure essentially
2231implements the @code{rindex} or @code{strrchr} functions from
2232the C library.
2233
2234@lisp
2235(string-rindex "weiner" #\e)
2236@result{} 4
2237
2238(string-rindex "weiner" #\e 2 4)
2239@result{} #f
2240
2241(string-rindex "weiner" #\e 2 5)
2242@result{} 4
2243@end lisp
2244@end deffn
2245
2246@node Alphabetic Case Mapping
2247@subsubsection Alphabetic Case Mapping
2248
2249These are procedures for mapping strings to their upper- or lower-case
2250equivalents, respectively, or for capitalizing strings.
2251
2252@deffn {Scheme Procedure} string-upcase str
2253@deffnx {C Function} scm_string_upcase (str)
2254Return a freshly allocated string containing the characters of
2255@var{str} in upper case.
2256@end deffn
2257
2258@deffn {Scheme Procedure} string-upcase! str
2259@deffnx {C Function} scm_string_upcase_x (str)
2260Destructively upcase every character in @var{str} and return
2261@var{str}.
2262@lisp
2263y @result{} "arrdefg"
2264(string-upcase! y) @result{} "ARRDEFG"
2265y @result{} "ARRDEFG"
2266@end lisp
2267@end deffn
2268
2269@deffn {Scheme Procedure} string-downcase str
2270@deffnx {C Function} scm_string_downcase (str)
2271Return a freshly allocation string containing the characters in
2272@var{str} in lower case.
2273@end deffn
2274
2275@deffn {Scheme Procedure} string-downcase! str
2276@deffnx {C Function} scm_string_downcase_x (str)
2277Destructively downcase every character in @var{str} and return
2278@var{str}.
2279@lisp
2280y @result{} "ARRDEFG"
2281(string-downcase! y) @result{} "arrdefg"
2282y @result{} "arrdefg"
2283@end lisp
2284@end deffn
2285
2286@deffn {Scheme Procedure} string-capitalize str
2287@deffnx {C Function} scm_string_capitalize (str)
2288Return a freshly allocated string with the characters in
2289@var{str}, where the first character of every word is
2290capitalized.
2291@end deffn
2292
2293@deffn {Scheme Procedure} string-capitalize! str
2294@deffnx {C Function} scm_string_capitalize_x (str)
2295Upcase the first character of every word in @var{str}
2296destructively and return @var{str}.
2297
2298@lisp
2299y @result{} "hello world"
2300(string-capitalize! y) @result{} "Hello World"
2301y @result{} "Hello World"
2302@end lisp
2303@end deffn
2304
2305
2306@node Appending Strings
2307@subsubsection Appending Strings
2308
2309The procedure @code{string-append} appends several strings together to
2310form a longer result string.
2311
2312@rnindex string-append
2313@deffn {Scheme Procedure} string-append . args
2314@deffnx {C Function} scm_string_append (args)
2315Return a newly allocated string whose characters form the
2316concatenation of the given strings, @var{args}.
2317
2318@example
2319(let ((h "hello "))
2320 (string-append h "world"))
2321@result{} "hello world"
2322@end example
2323@end deffn
2324
91210d62
MV
2325@node Conversion to/from C
2326@subsubsection Conversion to/from C
2327
2328When creating a Scheme string from a C string or when converting a
2329Scheme string to a C string, the concept of character encoding becomes
2330important.
2331
2332In C, a string is just a sequence of bytes, and the character encoding
2333describes the relation between these bytes and the actual characters
c88453e8
MV
2334that make up the string. For Scheme strings, character encoding is
2335not an issue (most of the time), since in Scheme you never get to see
2336the bytes, only the characters.
91210d62
MV
2337
2338Well, ideally, anyway. Right now, Guile simply equates Scheme
2339characters and bytes, ignoring the possibility of multi-byte encodings
2340completely. This will change in the future, where Guile will use
2341Unicode codepoints as its characters and UTF-8 (or maybe UCS-4) as its
2342internal encoding. When you exclusively use the functions listed in
2343this section, you are `future-proof'.
2344
c88453e8
MV
2345Converting a Scheme string to a C string will often allocate fresh
2346memory to hold the result. You must take care that this memory is
2347properly freed eventually. In many cases, this can be achieved by
2348using @code{scm_frame_free} inside an appropriate frame,
2349@xref{Frames}.
91210d62
MV
2350
2351@deftypefn {C Function} SCM scm_from_locale_string (const char *str)
2352@deftypefnx {C Function} SCM scm_from_locale_stringn (const char *str, size_t len)
2353Creates a new Scheme string that has the same contents as @var{str}
2354when interpreted in the current locale character encoding.
2355
2356For @code{scm_from_locale_string}, @var{str} must be null-terminated.
2357
2358For @code{scm_from_locale_stringn}, @var{len} specifies the length of
2359@var{str} in bytes, and @var{str} does not need to be null-terminated.
2360If @var{len} is @code{(size_t)-1}, then @var{str} does need to be
2361null-terminated and the real length will be found with @code{strlen}.
2362@end deftypefn
2363
2364@deftypefn {C Function} SCM scm_take_locale_string (char *str)
2365@deftypefnx {C Function} SCM scm_take_locale_stringn (char *str, size_t len)
2366Like @code{scm_from_locale_string} and @code{scm_from_locale_stringn},
2367respectively, but also frees @var{str} with @code{free} eventually.
2368Thus, you can use this function when you would free @var{str} anyway
2369immediately after creating the Scheme string. In certain cases, Guile
2370can then use @var{str} directly as its internal representation.
2371@end deftypefn
2372
2373@deftypefn {C Function} char *scm_to_locale_string (SCM str)
2374@deftypefnx {C Function} char *scm_to_locale_stringn (SCM str, size_t *lenp)
2375Returns a C string in the current locale encoding with the same
2376contents as @var{str}. The C string must be freed with @code{free}
2377eventually, maybe by using @code{scm_frame_free}, @xref{Frames}.
2378
2379For @code{scm_to_locale_string}, the returned string is
2380null-terminated and an error is signalled when @var{str} contains
2381@code{#\nul} characters.
2382
2383For @code{scm_to_locale_stringn} and @var{lenp} not @code{NULL},
2384@var{str} might contain @code{#\nul} characters and the length of the
2385returned string in bytes is stored in @code{*@var{lenp}}. The
2386returned string will not be null-terminated in this case. If
2387@var{lenp} is @code{NULL}, @code{scm_to_locale_stringn} behaves like
2388@code{scm_to_locale_string}.
2389@end deftypefn
2390
2391@deftypefn {C Function} size_t scm_to_locale_stringbuf (SCM str, char *buf, size_t max_len)
2392Puts @var{str} as a C string in the current locale encoding into the
2393memory pointed to by @var{buf}. The buffer at @var{buf} has room for
2394@var{max_len} bytes and @code{scm_to_local_stringbuf} will never store
2395more than that. No terminating @code{'\0'} will be stored.
2396
2397The return value of @code{scm_to_locale_stringbuf} is the number of
2398bytes that are needed for all of @var{str}, regardless of whether
2399@var{buf} was large enough to hold them. Thus, when the return value
2400is larger than @var{max_len}, only @var{max_len} bytes have been
2401stored and you probably need to try again with a larger buffer.
2402@end deftypefn
07d83abe
MV
2403
2404@node Regular Expressions
2405@subsection Regular Expressions
2406@tpindex Regular expressions
2407
2408@cindex regular expressions
2409@cindex regex
2410@cindex emacs regexp
2411
2412A @dfn{regular expression} (or @dfn{regexp}) is a pattern that
2413describes a whole class of strings. A full description of regular
2414expressions and their syntax is beyond the scope of this manual;
2415an introduction can be found in the Emacs manual (@pxref{Regexps,
2416, Syntax of Regular Expressions, emacs, The GNU Emacs Manual}), or
2417in many general Unix reference books.
2418
2419If your system does not include a POSIX regular expression library,
2420and you have not linked Guile with a third-party regexp library such
2421as Rx, these functions will not be available. You can tell whether
2422your Guile installation includes regular expression support by
2423checking whether @code{(provided? 'regex)} returns true.
2424
2425The following regexp and string matching features are provided by the
2426@code{(ice-9 regex)} module. Before using the described functions,
2427you should load this module by executing @code{(use-modules (ice-9
2428regex))}.
2429
2430@menu
2431* Regexp Functions:: Functions that create and match regexps.
2432* Match Structures:: Finding what was matched by a regexp.
2433* Backslash Escapes:: Removing the special meaning of regexp
2434 meta-characters.
2435@end menu
2436
2437
2438@node Regexp Functions
2439@subsubsection Regexp Functions
2440
2441By default, Guile supports POSIX extended regular expressions.
2442That means that the characters @samp{(}, @samp{)}, @samp{+} and
2443@samp{?} are special, and must be escaped if you wish to match the
2444literal characters.
2445
2446This regular expression interface was modeled after that
2447implemented by SCSH, the Scheme Shell. It is intended to be
2448upwardly compatible with SCSH regular expressions.
2449
2450@deffn {Scheme Procedure} string-match pattern str [start]
2451Compile the string @var{pattern} into a regular expression and compare
2452it with @var{str}. The optional numeric argument @var{start} specifies
2453the position of @var{str} at which to begin matching.
2454
2455@code{string-match} returns a @dfn{match structure} which
2456describes what, if anything, was matched by the regular
2457expression. @xref{Match Structures}. If @var{str} does not match
2458@var{pattern} at all, @code{string-match} returns @code{#f}.
2459@end deffn
2460
2461Two examples of a match follow. In the first example, the pattern
2462matches the four digits in the match string. In the second, the pattern
2463matches nothing.
2464
2465@example
2466(string-match "[0-9][0-9][0-9][0-9]" "blah2002")
2467@result{} #("blah2002" (4 . 8))
2468
2469(string-match "[A-Za-z]" "123456")
2470@result{} #f
2471@end example
2472
2473Each time @code{string-match} is called, it must compile its
2474@var{pattern} argument into a regular expression structure. This
2475operation is expensive, which makes @code{string-match} inefficient if
2476the same regular expression is used several times (for example, in a
2477loop). For better performance, you can compile a regular expression in
2478advance and then match strings against the compiled regexp.
2479
2480@deffn {Scheme Procedure} make-regexp pat flag@dots{}
2481@deffnx {C Function} scm_make_regexp (pat, flaglst)
2482Compile the regular expression described by @var{pat}, and
2483return the compiled regexp structure. If @var{pat} does not
2484describe a legal regular expression, @code{make-regexp} throws
2485a @code{regular-expression-syntax} error.
2486
2487The @var{flag} arguments change the behavior of the compiled
2488regular expression. The following values may be supplied:
2489
2490@defvar regexp/icase
2491Consider uppercase and lowercase letters to be the same when
2492matching.
2493@end defvar
2494
2495@defvar regexp/newline
2496If a newline appears in the target string, then permit the
2497@samp{^} and @samp{$} operators to match immediately after or
2498immediately before the newline, respectively. Also, the
2499@samp{.} and @samp{[^...]} operators will never match a newline
2500character. The intent of this flag is to treat the target
2501string as a buffer containing many lines of text, and the
2502regular expression as a pattern that may match a single one of
2503those lines.
2504@end defvar
2505
2506@defvar regexp/basic
2507Compile a basic (``obsolete'') regexp instead of the extended
2508(``modern'') regexps that are the default. Basic regexps do
2509not consider @samp{|}, @samp{+} or @samp{?} to be special
2510characters, and require the @samp{@{...@}} and @samp{(...)}
2511metacharacters to be backslash-escaped (@pxref{Backslash
2512Escapes}). There are several other differences between basic
2513and extended regular expressions, but these are the most
2514significant.
2515@end defvar
2516
2517@defvar regexp/extended
2518Compile an extended regular expression rather than a basic
2519regexp. This is the default behavior; this flag will not
2520usually be needed. If a call to @code{make-regexp} includes
2521both @code{regexp/basic} and @code{regexp/extended} flags, the
2522one which comes last will override the earlier one.
2523@end defvar
2524@end deffn
2525
2526@deffn {Scheme Procedure} regexp-exec rx str [start [flags]]
2527@deffnx {C Function} scm_regexp_exec (rx, str, start, flags)
2528Match the compiled regular expression @var{rx} against
2529@code{str}. If the optional integer @var{start} argument is
2530provided, begin matching from that position in the string.
2531Return a match structure describing the results of the match,
2532or @code{#f} if no match could be found.
2533
2534The @var{flags} arguments change the matching behavior.
2535The following flags may be supplied:
2536
2537@defvar regexp/notbol
2538Operator @samp{^} always fails (unless @code{regexp/newline}
2539is used). Use this when the beginning of the string should
2540not be considered the beginning of a line.
2541@end defvar
2542
2543@defvar regexp/noteol
2544Operator @samp{$} always fails (unless @code{regexp/newline}
2545is used). Use this when the end of the string should not be
2546considered the end of a line.
2547@end defvar
2548@end deffn
2549
2550@lisp
2551;; Regexp to match uppercase letters
2552(define r (make-regexp "[A-Z]*"))
2553
2554;; Regexp to match letters, ignoring case
2555(define ri (make-regexp "[A-Z]*" regexp/icase))
2556
2557;; Search for bob using regexp r
2558(match:substring (regexp-exec r "bob"))
2559@result{} "" ; no match
2560
2561;; Search for bob using regexp ri
2562(match:substring (regexp-exec ri "Bob"))
2563@result{} "Bob" ; matched case insensitive
2564@end lisp
2565
2566@deffn {Scheme Procedure} regexp? obj
2567@deffnx {C Function} scm_regexp_p (obj)
2568Return @code{#t} if @var{obj} is a compiled regular expression,
2569or @code{#f} otherwise.
2570@end deffn
2571
2572Regular expressions are commonly used to find patterns in one string and
2573replace them with the contents of another string.
2574
2575@c begin (scm-doc-string "regex.scm" "regexp-substitute")
2576@deffn {Scheme Procedure} regexp-substitute port match [item@dots{}]
2577Write to the output port @var{port} selected contents of the match
2578structure @var{match}. Each @var{item} specifies what should be
2579written, and may be one of the following arguments:
2580
2581@itemize @bullet
2582@item
2583A string. String arguments are written out verbatim.
2584
2585@item
2586An integer. The submatch with that number is written.
2587
2588@item
2589The symbol @samp{pre}. The portion of the matched string preceding
2590the regexp match is written.
2591
2592@item
2593The symbol @samp{post}. The portion of the matched string following
2594the regexp match is written.
2595@end itemize
2596
2597The @var{port} argument may be @code{#f}, in which case nothing is
2598written; instead, @code{regexp-substitute} constructs a string from the
2599specified @var{item}s and returns that.
2600@end deffn
2601
2602The following example takes a regular expression that matches a standard
2603@sc{yyyymmdd}-format date such as @code{"20020828"}. The
2604@code{regexp-substitute} call returns a string computed from the
2605information in the match structure, consisting of the fields and text
2606from the original string reordered and reformatted.
2607
2608@lisp
2609(define date-regex "([0-9][0-9][0-9][0-9])([0-9][0-9])([0-9][0-9])")
2610(define s "Date 20020429 12am.")
2611(define sm (string-match date-regex s))
2612(regexp-substitute #f sm 'pre 2 "-" 3 "-" 1 'post " (" 0 ")")
2613@result{} "Date 04-29-2002 12am. (20020429)"
2614@end lisp
2615
2616@c begin (scm-doc-string "regex.scm" "regexp-substitute")
2617@deffn {Scheme Procedure} regexp-substitute/global port regexp target [item@dots{}]
2618Similar to @code{regexp-substitute}, but can be used to perform global
2619substitutions on @var{str}. Instead of taking a match structure as an
2620argument, @code{regexp-substitute/global} takes two string arguments: a
2621@var{regexp} string describing a regular expression, and a @var{target}
2622string which should be matched against this regular expression.
2623
2624Each @var{item} behaves as in @code{regexp-substitute}, with the
2625following exceptions:
2626
2627@itemize @bullet
2628@item
2629A function may be supplied. When this function is called, it will be
2630passed one argument: a match structure for a given regular expression
2631match. It should return a string to be written out to @var{port}.
2632
2633@item
2634The @samp{post} symbol causes @code{regexp-substitute/global} to recurse
2635on the unmatched portion of @var{str}. This @emph{must} be supplied in
2636order to perform global search-and-replace on @var{str}; if it is not
2637present among the @var{item}s, then @code{regexp-substitute/global} will
2638return after processing a single match.
2639@end itemize
2640@end deffn
2641
2642The example above for @code{regexp-substitute} could be rewritten as
2643follows to remove the @code{string-match} stage:
2644
2645@lisp
2646(define date-regex "([0-9][0-9][0-9][0-9])([0-9][0-9])([0-9][0-9])")
2647(define s "Date 20020429 12am.")
2648(regexp-substitute/global #f date-regex s
2649 'pre 2 "-" 3 "-" 1 'post " (" 0 ")")
2650@result{} "Date 04-29-2002 12am. (20020429)"
2651@end lisp
2652
2653
2654@node Match Structures
2655@subsubsection Match Structures
2656
2657@cindex match structures
2658
2659A @dfn{match structure} is the object returned by @code{string-match} and
2660@code{regexp-exec}. It describes which portion of a string, if any,
2661matched the given regular expression. Match structures include: a
2662reference to the string that was checked for matches; the starting and
2663ending positions of the regexp match; and, if the regexp included any
2664parenthesized subexpressions, the starting and ending positions of each
2665submatch.
2666
2667In each of the regexp match functions described below, the @code{match}
2668argument must be a match structure returned by a previous call to
2669@code{string-match} or @code{regexp-exec}. Most of these functions
2670return some information about the original target string that was
2671matched against a regular expression; we will call that string
2672@var{target} for easy reference.
2673
2674@c begin (scm-doc-string "regex.scm" "regexp-match?")
2675@deffn {Scheme Procedure} regexp-match? obj
2676Return @code{#t} if @var{obj} is a match structure returned by a
2677previous call to @code{regexp-exec}, or @code{#f} otherwise.
2678@end deffn
2679
2680@c begin (scm-doc-string "regex.scm" "match:substring")
2681@deffn {Scheme Procedure} match:substring match [n]
2682Return the portion of @var{target} matched by subexpression number
2683@var{n}. Submatch 0 (the default) represents the entire regexp match.
2684If the regular expression as a whole matched, but the subexpression
2685number @var{n} did not match, return @code{#f}.
2686@end deffn
2687
2688@lisp
2689(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2690(match:substring s)
2691@result{} "2002"
2692
2693;; match starting at offset 6 in the string
2694(match:substring
2695 (string-match "[0-9][0-9][0-9][0-9]" "blah987654" 6))
2696@result{} "7654"
2697@end lisp
2698
2699@c begin (scm-doc-string "regex.scm" "match:start")
2700@deffn {Scheme Procedure} match:start match [n]
2701Return the starting position of submatch number @var{n}.
2702@end deffn
2703
2704In the following example, the result is 4, since the match starts at
2705character index 4:
2706
2707@lisp
2708(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2709(match:start s)
2710@result{} 4
2711@end lisp
2712
2713@c begin (scm-doc-string "regex.scm" "match:end")
2714@deffn {Scheme Procedure} match:end match [n]
2715Return the ending position of submatch number @var{n}.
2716@end deffn
2717
2718In the following example, the result is 8, since the match runs between
2719characters 4 and 8 (i.e. the ``2002'').
2720
2721@lisp
2722(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2723(match:end s)
2724@result{} 8
2725@end lisp
2726
2727@c begin (scm-doc-string "regex.scm" "match:prefix")
2728@deffn {Scheme Procedure} match:prefix match
2729Return the unmatched portion of @var{target} preceding the regexp match.
2730
2731@lisp
2732(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2733(match:prefix s)
2734@result{} "blah"
2735@end lisp
2736@end deffn
2737
2738@c begin (scm-doc-string "regex.scm" "match:suffix")
2739@deffn {Scheme Procedure} match:suffix match
2740Return the unmatched portion of @var{target} following the regexp match.
2741@end deffn
2742
2743@lisp
2744(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2745(match:suffix s)
2746@result{} "foo"
2747@end lisp
2748
2749@c begin (scm-doc-string "regex.scm" "match:count")
2750@deffn {Scheme Procedure} match:count match
2751Return the number of parenthesized subexpressions from @var{match}.
2752Note that the entire regular expression match itself counts as a
2753subexpression, and failed submatches are included in the count.
2754@end deffn
2755
2756@c begin (scm-doc-string "regex.scm" "match:string")
2757@deffn {Scheme Procedure} match:string match
2758Return the original @var{target} string.
2759@end deffn
2760
2761@lisp
2762(define s (string-match "[0-9][0-9][0-9][0-9]" "blah2002foo"))
2763(match:string s)
2764@result{} "blah2002foo"
2765@end lisp
2766
2767
2768@node Backslash Escapes
2769@subsubsection Backslash Escapes
2770
2771Sometimes you will want a regexp to match characters like @samp{*} or
2772@samp{$} exactly. For example, to check whether a particular string
2773represents a menu entry from an Info node, it would be useful to match
2774it against a regexp like @samp{^* [^:]*::}. However, this won't work;
2775because the asterisk is a metacharacter, it won't match the @samp{*} at
2776the beginning of the string. In this case, we want to make the first
2777asterisk un-magic.
2778
2779You can do this by preceding the metacharacter with a backslash
2780character @samp{\}. (This is also called @dfn{quoting} the
2781metacharacter, and is known as a @dfn{backslash escape}.) When Guile
2782sees a backslash in a regular expression, it considers the following
2783glyph to be an ordinary character, no matter what special meaning it
2784would ordinarily have. Therefore, we can make the above example work by
2785changing the regexp to @samp{^\* [^:]*::}. The @samp{\*} sequence tells
2786the regular expression engine to match only a single asterisk in the
2787target string.
2788
2789Since the backslash is itself a metacharacter, you may force a regexp to
2790match a backslash in the target string by preceding the backslash with
2791itself. For example, to find variable references in a @TeX{} program,
2792you might want to find occurrences of the string @samp{\let\} followed
2793by any number of alphabetic characters. The regular expression
2794@samp{\\let\\[A-Za-z]*} would do this: the double backslashes in the
2795regexp each match a single backslash in the target string.
2796
2797@c begin (scm-doc-string "regex.scm" "regexp-quote")
2798@deffn {Scheme Procedure} regexp-quote str
2799Quote each special character found in @var{str} with a backslash, and
2800return the resulting string.
2801@end deffn
2802
2803@strong{Very important:} Using backslash escapes in Guile source code
2804(as in Emacs Lisp or C) can be tricky, because the backslash character
2805has special meaning for the Guile reader. For example, if Guile
2806encounters the character sequence @samp{\n} in the middle of a string
2807while processing Scheme code, it replaces those characters with a
2808newline character. Similarly, the character sequence @samp{\t} is
2809replaced by a horizontal tab. Several of these @dfn{escape sequences}
2810are processed by the Guile reader before your code is executed.
2811Unrecognized escape sequences are ignored: if the characters @samp{\*}
2812appear in a string, they will be translated to the single character
2813@samp{*}.
2814
2815This translation is obviously undesirable for regular expressions, since
2816we want to be able to include backslashes in a string in order to
2817escape regexp metacharacters. Therefore, to make sure that a backslash
2818is preserved in a string in your Guile program, you must use @emph{two}
2819consecutive backslashes:
2820
2821@lisp
2822(define Info-menu-entry-pattern (make-regexp "^\\* [^:]*"))
2823@end lisp
2824
2825The string in this example is preprocessed by the Guile reader before
2826any code is executed. The resulting argument to @code{make-regexp} is
2827the string @samp{^\* [^:]*}, which is what we really want.
2828
2829This also means that in order to write a regular expression that matches
2830a single backslash character, the regular expression string in the
2831source code must include @emph{four} backslashes. Each consecutive pair
2832of backslashes gets translated by the Guile reader to a single
2833backslash, and the resulting double-backslash is interpreted by the
2834regexp engine as matching a single backslash character. Hence:
2835
2836@lisp
2837(define tex-variable-pattern (make-regexp "\\\\let\\\\=[A-Za-z]*"))
2838@end lisp
2839
2840The reason for the unwieldiness of this syntax is historical. Both
2841regular expression pattern matchers and Unix string processing systems
2842have traditionally used backslashes with the special meanings
2843described above. The POSIX regular expression specification and ANSI C
2844standard both require these semantics. Attempting to abandon either
2845convention would cause other kinds of compatibility problems, possibly
2846more severe ones. Therefore, without extending the Scheme reader to
2847support strings with different quoting conventions (an ungainly and
2848confusing extension when implemented in other languages), we must adhere
2849to this cumbersome escape syntax.
2850
2851
2852@node Symbols
2853@subsection Symbols
2854@tpindex Symbols
2855
2856Symbols in Scheme are widely used in three ways: as items of discrete
2857data, as lookup keys for alists and hash tables, and to denote variable
2858references.
2859
2860A @dfn{symbol} is similar to a string in that it is defined by a
2861sequence of characters. The sequence of characters is known as the
2862symbol's @dfn{name}. In the usual case --- that is, where the symbol's
2863name doesn't include any characters that could be confused with other
2864elements of Scheme syntax --- a symbol is written in a Scheme program by
2865writing the sequence of characters that make up the name, @emph{without}
2866any quotation marks or other special syntax. For example, the symbol
2867whose name is ``multiply-by-2'' is written, simply:
2868
2869@lisp
2870multiply-by-2
2871@end lisp
2872
2873Notice how this differs from a @emph{string} with contents
2874``multiply-by-2'', which is written with double quotation marks, like
2875this:
2876
2877@lisp
2878"multiply-by-2"
2879@end lisp
2880
2881Looking beyond how they are written, symbols are different from strings
2882in two important respects.
2883
2884The first important difference is uniqueness. If the same-looking
2885string is read twice from two different places in a program, the result
2886is two @emph{different} string objects whose contents just happen to be
2887the same. If, on the other hand, the same-looking symbol is read twice
2888from two different places in a program, the result is the @emph{same}
2889symbol object both times.
2890
2891Given two read symbols, you can use @code{eq?} to test whether they are
2892the same (that is, have the same name). @code{eq?} is the most
2893efficient comparison operator in Scheme, and comparing two symbols like
2894this is as fast as comparing, for example, two numbers. Given two
2895strings, on the other hand, you must use @code{equal?} or
2896@code{string=?}, which are much slower comparison operators, to
2897determine whether the strings have the same contents.
2898
2899@lisp
2900(define sym1 (quote hello))
2901(define sym2 (quote hello))
2902(eq? sym1 sym2) @result{} #t
2903
2904(define str1 "hello")
2905(define str2 "hello")
2906(eq? str1 str2) @result{} #f
2907(equal? str1 str2) @result{} #t
2908@end lisp
2909
2910The second important difference is that symbols, unlike strings, are not
2911self-evaluating. This is why we need the @code{(quote @dots{})}s in the
2912example above: @code{(quote hello)} evaluates to the symbol named
2913"hello" itself, whereas an unquoted @code{hello} is @emph{read} as the
2914symbol named "hello" and evaluated as a variable reference @dots{} about
2915which more below (@pxref{Symbol Variables}).
2916
2917@menu
2918* Symbol Data:: Symbols as discrete data.
2919* Symbol Keys:: Symbols as lookup keys.
2920* Symbol Variables:: Symbols as denoting variables.
2921* Symbol Primitives:: Operations related to symbols.
2922* Symbol Props:: Function slots and property lists.
2923* Symbol Read Syntax:: Extended read syntax for symbols.
2924* Symbol Uninterned:: Uninterned symbols.
2925@end menu
2926
2927
2928@node Symbol Data
2929@subsubsection Symbols as Discrete Data
2930
2931Numbers and symbols are similar to the extent that they both lend
2932themselves to @code{eq?} comparison. But symbols are more descriptive
2933than numbers, because a symbol's name can be used directly to describe
2934the concept for which that symbol stands.
2935
2936For example, imagine that you need to represent some colours in a
2937computer program. Using numbers, you would have to choose arbitrarily
2938some mapping between numbers and colours, and then take care to use that
2939mapping consistently:
2940
2941@lisp
2942;; 1=red, 2=green, 3=purple
2943
2944(if (eq? (colour-of car) 1)
2945 ...)
2946@end lisp
2947
2948@noindent
2949You can make the mapping more explicit and the code more readable by
2950defining constants:
2951
2952@lisp
2953(define red 1)
2954(define green 2)
2955(define purple 3)
2956
2957(if (eq? (colour-of car) red)
2958 ...)
2959@end lisp
2960
2961@noindent
2962But the simplest and clearest approach is not to use numbers at all, but
2963symbols whose names specify the colours that they refer to:
2964
2965@lisp
2966(if (eq? (colour-of car) 'red)
2967 ...)
2968@end lisp
2969
2970The descriptive advantages of symbols over numbers increase as the set
2971of concepts that you want to describe grows. Suppose that a car object
2972can have other properties as well, such as whether it has or uses:
2973
2974@itemize @bullet
2975@item
2976automatic or manual transmission
2977@item
2978leaded or unleaded fuel
2979@item
2980power steering (or not).
2981@end itemize
2982
2983@noindent
2984Then a car's combined property set could be naturally represented and
2985manipulated as a list of symbols:
2986
2987@lisp
2988(properties-of car1)
2989@result{}
2990(red manual unleaded power-steering)
2991
2992(if (memq 'power-steering (properties-of car1))
2993 (display "Unfit people can drive this car.\n")
2994 (display "You'll need strong arms to drive this car!\n"))
2995@print{}
2996Unfit people can drive this car.
2997@end lisp
2998
2999Remember, the fundamental property of symbols that we are relying on
3000here is that an occurrence of @code{'red} in one part of a program is an
3001@emph{indistinguishable} symbol from an occurrence of @code{'red} in
3002another part of a program; this means that symbols can usefully be
3003compared using @code{eq?}. At the same time, symbols have naturally
3004descriptive names. This combination of efficiency and descriptive power
3005makes them ideal for use as discrete data.
3006
3007
3008@node Symbol Keys
3009@subsubsection Symbols as Lookup Keys
3010
3011Given their efficiency and descriptive power, it is natural to use
3012symbols as the keys in an association list or hash table.
3013
3014To illustrate this, consider a more structured representation of the car
3015properties example from the preceding subsection. Rather than
3016mixing all the properties up together in a flat list, we could use an
3017association list like this:
3018
3019@lisp
3020(define car1-properties '((colour . red)
3021 (transmission . manual)
3022 (fuel . unleaded)
3023 (steering . power-assisted)))
3024@end lisp
3025
3026Notice how this structure is more explicit and extensible than the flat
3027list. For example it makes clear that @code{manual} refers to the
3028transmission rather than, say, the windows or the locking of the car.
3029It also allows further properties to use the same symbols among their
3030possible values without becoming ambiguous:
3031
3032@lisp
3033(define car1-properties '((colour . red)
3034 (transmission . manual)
3035 (fuel . unleaded)
3036 (steering . power-assisted)
3037 (seat-colour . red)
3038 (locking . manual)))
3039@end lisp
3040
3041With a representation like this, it is easy to use the efficient
3042@code{assq-XXX} family of procedures (@pxref{Association Lists}) to
3043extract or change individual pieces of information:
3044
3045@lisp
3046(assq-ref car1-properties 'fuel) @result{} unleaded
3047(assq-ref car1-properties 'transmission) @result{} manual
3048
3049(assq-set! car1-properties 'seat-colour 'black)
3050@result{}
3051((colour . red)
3052 (transmission . manual)
3053 (fuel . unleaded)
3054 (steering . power-assisted)
3055 (seat-colour . black)
3056 (locking . manual)))
3057@end lisp
3058
3059Hash tables also have keys, and exactly the same arguments apply to the
3060use of symbols in hash tables as in association lists. The hash value
3061that Guile uses to decide where to add a symbol-keyed entry to a hash
3062table can be obtained by calling the @code{symbol-hash} procedure:
3063
3064@deffn {Scheme Procedure} symbol-hash symbol
3065@deffnx {C Function} scm_symbol_hash (symbol)
3066Return a hash value for @var{symbol}.
3067@end deffn
3068
3069See @ref{Hash Tables} for information about hash tables in general, and
3070for why you might choose to use a hash table rather than an association
3071list.
3072
3073
3074@node Symbol Variables
3075@subsubsection Symbols as Denoting Variables
3076
3077When an unquoted symbol in a Scheme program is evaluated, it is
3078interpreted as a variable reference, and the result of the evaluation is
3079the appropriate variable's value.
3080
3081For example, when the expression @code{(string-length "abcd")} is read
3082and evaluated, the sequence of characters @code{string-length} is read
3083as the symbol whose name is "string-length". This symbol is associated
3084with a variable whose value is the procedure that implements string
3085length calculation. Therefore evaluation of the @code{string-length}
3086symbol results in that procedure.
3087
3088The details of the connection between an unquoted symbol and the
3089variable to which it refers are explained elsewhere. See @ref{Binding
3090Constructs}, for how associations between symbols and variables are
3091created, and @ref{Modules}, for how those associations are affected by
3092Guile's module system.
3093
3094
3095@node Symbol Primitives
3096@subsubsection Operations Related to Symbols
3097
3098Given any Scheme value, you can determine whether it is a symbol using
3099the @code{symbol?} primitive:
3100
3101@rnindex symbol?
3102@deffn {Scheme Procedure} symbol? obj
3103@deffnx {C Function} scm_symbol_p (obj)
3104Return @code{#t} if @var{obj} is a symbol, otherwise return
3105@code{#f}.
3106@end deffn
3107
3108Once you know that you have a symbol, you can obtain its name as a
3109string by calling @code{symbol->string}. Note that Guile differs by
3110default from R5RS on the details of @code{symbol->string} as regards
3111case-sensitivity:
3112
3113@rnindex symbol->string
3114@deffn {Scheme Procedure} symbol->string s
3115@deffnx {C Function} scm_symbol_to_string (s)
3116Return the name of symbol @var{s} as a string. By default, Guile reads
3117symbols case-sensitively, so the string returned will have the same case
3118variation as the sequence of characters that caused @var{s} to be
3119created.
3120
3121If Guile is set to read symbols case-insensitively (as specified by
3122R5RS), and @var{s} comes into being as part of a literal expression
3123(@pxref{Literal expressions,,,r5rs, The Revised^5 Report on Scheme}) or
3124by a call to the @code{read} or @code{string-ci->symbol} procedures,
3125Guile converts any alphabetic characters in the symbol's name to
3126lower case before creating the symbol object, so the string returned
3127here will be in lower case.
3128
3129If @var{s} was created by @code{string->symbol}, the case of characters
3130in the string returned will be the same as that in the string that was
3131passed to @code{string->symbol}, regardless of Guile's case-sensitivity
3132setting at the time @var{s} was created.
3133
3134It is an error to apply mutation procedures like @code{string-set!} to
3135strings returned by this procedure.
3136@end deffn
3137
3138Most symbols are created by writing them literally in code. However it
3139is also possible to create symbols programmatically using the following
3140@code{string->symbol} and @code{string-ci->symbol} procedures:
3141
3142@rnindex string->symbol
3143@deffn {Scheme Procedure} string->symbol string
3144@deffnx {C Function} scm_string_to_symbol (string)
3145Return the symbol whose name is @var{string}. This procedure can create
3146symbols with names containing special characters or letters in the
3147non-standard case, but it is usually a bad idea to create such symbols
3148because in some implementations of Scheme they cannot be read as
3149themselves.
3150@end deffn
3151
3152@deffn {Scheme Procedure} string-ci->symbol str
3153@deffnx {C Function} scm_string_ci_to_symbol (str)
3154Return the symbol whose name is @var{str}. If Guile is currently
3155reading symbols case-insensitively, @var{str} is converted to lowercase
3156before the returned symbol is looked up or created.
3157@end deffn
3158
3159The following examples illustrate Guile's detailed behaviour as regards
3160the case-sensitivity of symbols:
3161
3162@lisp
3163(read-enable 'case-insensitive) ; R5RS compliant behaviour
3164
3165(symbol->string 'flying-fish) @result{} "flying-fish"
3166(symbol->string 'Martin) @result{} "martin"
3167(symbol->string
3168 (string->symbol "Malvina")) @result{} "Malvina"
3169
3170(eq? 'mISSISSIppi 'mississippi) @result{} #t
3171(string->symbol "mISSISSIppi") @result{} mISSISSIppi
3172(eq? 'bitBlt (string->symbol "bitBlt")) @result{} #f
3173(eq? 'LolliPop
3174 (string->symbol (symbol->string 'LolliPop))) @result{} #t
3175(string=? "K. Harper, M.D."
3176 (symbol->string
3177 (string->symbol "K. Harper, M.D."))) @result{} #t
3178
3179(read-disable 'case-insensitive) ; Guile default behaviour
3180
3181(symbol->string 'flying-fish) @result{} "flying-fish"
3182(symbol->string 'Martin) @result{} "Martin"
3183(symbol->string
3184 (string->symbol "Malvina")) @result{} "Malvina"
3185
3186(eq? 'mISSISSIppi 'mississippi) @result{} #f
3187(string->symbol "mISSISSIppi") @result{} mISSISSIppi
3188(eq? 'bitBlt (string->symbol "bitBlt")) @result{} #t
3189(eq? 'LolliPop
3190 (string->symbol (symbol->string 'LolliPop))) @result{} #t
3191(string=? "K. Harper, M.D."
3192 (symbol->string
3193 (string->symbol "K. Harper, M.D."))) @result{} #t
3194@end lisp
3195
3196From C, there are lower level functions that construct a Scheme symbol
3197from a null terminated C string or from a sequence of bytes whose length
3198is specified explicitly.
3199
3200@deffn {C Function} scm_str2symbol (const char * name)
3201@deffnx {C Function} scm_mem2symbol (const char * name, size_t len)
3202Construct and return a Scheme symbol whose name is specified by
3203@var{name}. For @code{scm_str2symbol} @var{name} must be null
3204terminated; For @code{scm_mem2symbol} the length of @var{name} is
3205specified explicitly by @var{len}.
3206@end deffn
3207
3208Finally, some applications, especially those that generate new Scheme
3209code dynamically, need to generate symbols for use in the generated
3210code. The @code{gensym} primitive meets this need:
3211
3212@deffn {Scheme Procedure} gensym [prefix]
3213@deffnx {C Function} scm_gensym (prefix)
3214Create a new symbol with a name constructed from a prefix and a counter
3215value. The string @var{prefix} can be specified as an optional
3216argument. Default prefix is @samp{@w{ g}}. The counter is increased by 1
3217at each call. There is no provision for resetting the counter.
3218@end deffn
3219
3220The symbols generated by @code{gensym} are @emph{likely} to be unique,
3221since their names begin with a space and it is only otherwise possible
3222to generate such symbols if a programmer goes out of their way to do
3223so. Uniqueness can be guaranteed by instead using uninterned symbols
3224(@pxref{Symbol Uninterned}), though they can't be usefully written out
3225and read back in.
3226
3227
3228@node Symbol Props
3229@subsubsection Function Slots and Property Lists
3230
3231In traditional Lisp dialects, symbols are often understood as having
3232three kinds of value at once:
3233
3234@itemize @bullet
3235@item
3236a @dfn{variable} value, which is used when the symbol appears in
3237code in a variable reference context
3238
3239@item
3240a @dfn{function} value, which is used when the symbol appears in
3241code in a function name position (i.e. as the first element in an
3242unquoted list)
3243
3244@item
3245a @dfn{property list} value, which is used when the symbol is given as
3246the first argument to Lisp's @code{put} or @code{get} functions.
3247@end itemize
3248
3249Although Scheme (as one of its simplifications with respect to Lisp)
3250does away with the distinction between variable and function namespaces,
3251Guile currently retains some elements of the traditional structure in
3252case they turn out to be useful when implementing translators for other
3253languages, in particular Emacs Lisp.
3254
3255Specifically, Guile symbols have two extra slots. for a symbol's
3256property list, and for its ``function value.'' The following procedures
3257are provided to access these slots.
3258
3259@deffn {Scheme Procedure} symbol-fref symbol
3260@deffnx {C Function} scm_symbol_fref (symbol)
3261Return the contents of @var{symbol}'s @dfn{function slot}.
3262@end deffn
3263
3264@deffn {Scheme Procedure} symbol-fset! symbol value
3265@deffnx {C Function} scm_symbol_fset_x (symbol, value)
3266Set the contents of @var{symbol}'s function slot to @var{value}.
3267@end deffn
3268
3269@deffn {Scheme Procedure} symbol-pref symbol
3270@deffnx {C Function} scm_symbol_pref (symbol)
3271Return the @dfn{property list} currently associated with @var{symbol}.
3272@end deffn
3273
3274@deffn {Scheme Procedure} symbol-pset! symbol value
3275@deffnx {C Function} scm_symbol_pset_x (symbol, value)
3276Set @var{symbol}'s property list to @var{value}.
3277@end deffn
3278
3279@deffn {Scheme Procedure} symbol-property sym prop
3280From @var{sym}'s property list, return the value for property
3281@var{prop}. The assumption is that @var{sym}'s property list is an
3282association list whose keys are distinguished from each other using
3283@code{equal?}; @var{prop} should be one of the keys in that list. If
3284the property list has no entry for @var{prop}, @code{symbol-property}
3285returns @code{#f}.
3286@end deffn
3287
3288@deffn {Scheme Procedure} set-symbol-property! sym prop val
3289In @var{sym}'s property list, set the value for property @var{prop} to
3290@var{val}, or add a new entry for @var{prop}, with value @var{val}, if
3291none already exists. For the structure of the property list, see
3292@code{symbol-property}.
3293@end deffn
3294
3295@deffn {Scheme Procedure} symbol-property-remove! sym prop
3296From @var{sym}'s property list, remove the entry for property
3297@var{prop}, if there is one. For the structure of the property list,
3298see @code{symbol-property}.
3299@end deffn
3300
3301Support for these extra slots may be removed in a future release, and it
3302is probably better to avoid using them. (In release 1.6, Guile itself
3303uses the property list slot sparingly, and the function slot not at
3304all.) For a more modern and Schemely approach to properties, see
3305@ref{Object Properties}.
3306
3307
3308@node Symbol Read Syntax
3309@subsubsection Extended Read Syntax for Symbols
3310
3311The read syntax for a symbol is a sequence of letters, digits, and
3312@dfn{extended alphabetic characters}, beginning with a character that
3313cannot begin a number. In addition, the special cases of @code{+},
3314@code{-}, and @code{...} are read as symbols even though numbers can
3315begin with @code{+}, @code{-} or @code{.}.
3316
3317Extended alphabetic characters may be used within identifiers as if
3318they were letters. The set of extended alphabetic characters is:
3319
3320@example
3321! $ % & * + - . / : < = > ? @@ ^ _ ~
3322@end example
3323
3324In addition to the standard read syntax defined above (which is taken
3325from R5RS (@pxref{Formal syntax,,,r5rs,The Revised^5 Report on
3326Scheme})), Guile provides an extended symbol read syntax that allows the
3327inclusion of unusual characters such as space characters, newlines and
3328parentheses. If (for whatever reason) you need to write a symbol
3329containing characters not mentioned above, you can do so as follows.
3330
3331@itemize @bullet
3332@item
3333Begin the symbol with the characters @code{#@{},
3334
3335@item
3336write the characters of the symbol and
3337
3338@item
3339finish the symbol with the characters @code{@}#}.
3340@end itemize
3341
3342Here are a few examples of this form of read syntax. The first symbol
3343needs to use extended syntax because it contains a space character, the
3344second because it contains a line break, and the last because it looks
3345like a number.
3346
3347@lisp
3348#@{foo bar@}#
3349
3350#@{what
3351ever@}#
3352
3353#@{4242@}#
3354@end lisp
3355
3356Although Guile provides this extended read syntax for symbols,
3357widespread usage of it is discouraged because it is not portable and not
3358very readable.
3359
3360
3361@node Symbol Uninterned
3362@subsubsection Uninterned Symbols
3363
3364What makes symbols useful is that they are automatically kept unique.
3365There are no two symbols that are distinct objects but have the same
3366name. But of course, there is no rule without exception. In addition
3367to the normal symbols that have been discussed up to now, you can also
3368create special @dfn{uninterned} symbols that behave slightly
3369differently.
3370
3371To understand what is different about them and why they might be useful,
3372we look at how normal symbols are actually kept unique.
3373
3374Whenever Guile wants to find the symbol with a specific name, for
3375example during @code{read} or when executing @code{string->symbol}, it
3376first looks into a table of all existing symbols to find out whether a
3377symbol with the given name already exists. When this is the case, Guile
3378just returns that symbol. When not, a new symbol with the name is
3379created and entered into the table so that it can be found later.
3380
3381Sometimes you might want to create a symbol that is guaranteed `fresh',
3382i.e. a symbol that did not exist previously. You might also want to
3383somehow guarantee that no one else will ever unintentionally stumble
3384across your symbol in the future. These properties of a symbol are
3385often needed when generating code during macro expansion. When
3386introducing new temporary variables, you want to guarantee that they
3387don't conflict with variables in other people's code.
3388
3389The simplest way to arrange for this is to create a new symbol but
3390not enter it into the global table of all symbols. That way, no one
3391will ever get access to your symbol by chance. Symbols that are not in
3392the table are called @dfn{uninterned}. Of course, symbols that
3393@emph{are} in the table are called @dfn{interned}.
3394
3395You create new uninterned symbols with the function @code{make-symbol}.
3396You can test whether a symbol is interned or not with
3397@code{symbol-interned?}.
3398
3399Uninterned symbols break the rule that the name of a symbol uniquely
3400identifies the symbol object. Because of this, they can not be written
3401out and read back in like interned symbols. Currently, Guile has no
3402support for reading uninterned symbols. Note that the function
3403@code{gensym} does not return uninterned symbols for this reason.
3404
3405@deffn {Scheme Procedure} make-symbol name
3406@deffnx {C Function} scm_make_symbol (name)
3407Return a new uninterned symbol with the name @var{name}. The returned
3408symbol is guaranteed to be unique and future calls to
3409@code{string->symbol} will not return it.
3410@end deffn
3411
3412@deffn {Scheme Procedure} symbol-interned? symbol
3413@deffnx {C Function} scm_symbol_interned_p (symbol)
3414Return @code{#t} if @var{symbol} is interned, otherwise return
3415@code{#f}.
3416@end deffn
3417
3418For example:
3419
3420@lisp
3421(define foo-1 (string->symbol "foo"))
3422(define foo-2 (string->symbol "foo"))
3423(define foo-3 (make-symbol "foo"))
3424(define foo-4 (make-symbol "foo"))
3425
3426(eq? foo-1 foo-2)
3427@result{} #t
3428; Two interned symbols with the same name are the same object,
3429
3430(eq? foo-1 foo-3)
3431@result{} #f
3432; but a call to make-symbol with the same name returns a
3433; distinct object.
3434
3435(eq? foo-3 foo-4)
3436@result{} #f
3437; A call to make-symbol always returns a new object, even for
3438; the same name.
3439
3440foo-3
3441@result{} #<uninterned-symbol foo 8085290>
3442; Uninterned symbols print differently from interned symbols,
3443
3444(symbol? foo-3)
3445@result{} #t
3446; but they are still symbols,
3447
3448(symbol-interned? foo-3)
3449@result{} #f
3450; just not interned.
3451@end lisp
3452
3453
3454@node Keywords
3455@subsection Keywords
3456@tpindex Keywords
3457
3458Keywords are self-evaluating objects with a convenient read syntax that
3459makes them easy to type.
3460
3461Guile's keyword support conforms to R5RS, and adds a (switchable) read
3462syntax extension to permit keywords to begin with @code{:} as well as
3463@code{#:}.
3464
3465@menu
3466* Why Use Keywords?:: Motivation for keyword usage.
3467* Coding With Keywords:: How to use keywords.
3468* Keyword Read Syntax:: Read syntax for keywords.
3469* Keyword Procedures:: Procedures for dealing with keywords.
3470* Keyword Primitives:: The underlying primitive procedures.
3471@end menu
3472
3473@node Why Use Keywords?
3474@subsubsection Why Use Keywords?
3475
3476Keywords are useful in contexts where a program or procedure wants to be
3477able to accept a large number of optional arguments without making its
3478interface unmanageable.
3479
3480To illustrate this, consider a hypothetical @code{make-window}
3481procedure, which creates a new window on the screen for drawing into
3482using some graphical toolkit. There are many parameters that the caller
3483might like to specify, but which could also be sensibly defaulted, for
3484example:
3485
3486@itemize @bullet
3487@item
3488color depth -- Default: the color depth for the screen
3489
3490@item
3491background color -- Default: white
3492
3493@item
3494width -- Default: 600
3495
3496@item
3497height -- Default: 400
3498@end itemize
3499
3500If @code{make-window} did not use keywords, the caller would have to
3501pass in a value for each possible argument, remembering the correct
3502argument order and using a special value to indicate the default value
3503for that argument:
3504
3505@lisp
3506(make-window 'default ;; Color depth
3507 'default ;; Background color
3508 800 ;; Width
3509 100 ;; Height
3510 @dots{}) ;; More make-window arguments
3511@end lisp
3512
3513With keywords, on the other hand, defaulted arguments are omitted, and
3514non-default arguments are clearly tagged by the appropriate keyword. As
3515a result, the invocation becomes much clearer:
3516
3517@lisp
3518(make-window #:width 800 #:height 100)
3519@end lisp
3520
3521On the other hand, for a simpler procedure with few arguments, the use
3522of keywords would be a hindrance rather than a help. The primitive
3523procedure @code{cons}, for example, would not be improved if it had to
3524be invoked as
3525
3526@lisp
3527(cons #:car x #:cdr y)
3528@end lisp
3529
3530So the decision whether to use keywords or not is purely pragmatic: use
3531them if they will clarify the procedure invocation at point of call.
3532
3533@node Coding With Keywords
3534@subsubsection Coding With Keywords
3535
3536If a procedure wants to support keywords, it should take a rest argument
3537and then use whatever means is convenient to extract keywords and their
3538corresponding arguments from the contents of that rest argument.
3539
3540The following example illustrates the principle: the code for
3541@code{make-window} uses a helper procedure called
3542@code{get-keyword-value} to extract individual keyword arguments from
3543the rest argument.
3544
3545@lisp
3546(define (get-keyword-value args keyword default)
3547 (let ((kv (memq keyword args)))
3548 (if (and kv (>= (length kv) 2))
3549 (cadr kv)
3550 default)))
3551
3552(define (make-window . args)
3553 (let ((depth (get-keyword-value args #:depth screen-depth))
3554 (bg (get-keyword-value args #:bg "white"))
3555 (width (get-keyword-value args #:width 800))
3556 (height (get-keyword-value args #:height 100))
3557 @dots{})
3558 @dots{}))
3559@end lisp
3560
3561But you don't need to write @code{get-keyword-value}. The @code{(ice-9
3562optargs)} module provides a set of powerful macros that you can use to
3563implement keyword-supporting procedures like this:
3564
3565@lisp
3566(use-modules (ice-9 optargs))
3567
3568(define (make-window . args)
3569 (let-keywords args #f ((depth screen-depth)
3570 (bg "white")
3571 (width 800)
3572 (height 100))
3573 ...))
3574@end lisp
3575
3576@noindent
3577Or, even more economically, like this:
3578
3579@lisp
3580(use-modules (ice-9 optargs))
3581
3582(define* (make-window #:key (depth screen-depth)
3583 (bg "white")
3584 (width 800)
3585 (height 100))
3586 ...)
3587@end lisp
3588
3589For further details on @code{let-keywords}, @code{define*} and other
3590facilities provided by the @code{(ice-9 optargs)} module, see
3591@ref{Optional Arguments}.
3592
3593
3594@node Keyword Read Syntax
3595@subsubsection Keyword Read Syntax
3596
3597Guile, by default, only recognizes the keyword syntax specified by R5RS.
3598A token of the form @code{#:NAME}, where @code{NAME} has the same syntax
3599as a Scheme symbol (@pxref{Symbol Read Syntax}), is the external
3600representation of the keyword named @code{NAME}. Keyword objects print
3601using this syntax as well, so values containing keyword objects can be
3602read back into Guile. When used in an expression, keywords are
3603self-quoting objects.
3604
3605If the @code{keyword} read option is set to @code{'prefix}, Guile also
3606recognizes the alternative read syntax @code{:NAME}. Otherwise, tokens
3607of the form @code{:NAME} are read as symbols, as required by R5RS.
3608
3609To enable and disable the alternative non-R5RS keyword syntax, you use
3610the @code{read-set!} procedure documented in @ref{User level options
3611interfaces} and @ref{Reader options}.
3612
3613@smalllisp
3614(read-set! keywords 'prefix)
3615
3616#:type
3617@result{}
3618#:type
3619
3620:type
3621@result{}
3622#:type
3623
3624(read-set! keywords #f)
3625
3626#:type
3627@result{}
3628#:type
3629
3630:type
3631@print{}
3632ERROR: In expression :type:
3633ERROR: Unbound variable: :type
3634ABORT: (unbound-variable)
3635@end smalllisp
3636
3637@node Keyword Procedures
3638@subsubsection Keyword Procedures
3639
3640The following procedures can be used for converting symbols to keywords
3641and back.
3642
3643@deffn {Scheme Procedure} symbol->keyword sym
3644Return a keyword with the same characters as in @var{sym}.
3645@end deffn
3646
3647@deffn {Scheme Procedure} keyword->symbol kw
3648Return a symbol with the same characters as in @var{kw}.
3649@end deffn
3650
3651
3652@node Keyword Primitives
3653@subsubsection Keyword Primitives
3654
3655Internally, a keyword is implemented as something like a tagged symbol,
3656where the tag identifies the keyword as being self-evaluating, and the
3657symbol, known as the keyword's @dfn{dash symbol} has the same name as
3658the keyword name but prefixed by a single dash. For example, the
3659keyword @code{#:name} has the corresponding dash symbol @code{-name}.
3660
3661Most keyword objects are constructed automatically by the reader when it
3662reads a token beginning with @code{#:}. However, if you need to
3663construct a keyword object programmatically, you can do so by calling
3664@code{make-keyword-from-dash-symbol} with the corresponding dash symbol
3665(as the reader does). The dash symbol for a keyword object can be
3666retrieved using the @code{keyword-dash-symbol} procedure.
3667
3668@deffn {Scheme Procedure} make-keyword-from-dash-symbol symbol
3669@deffnx {C Function} scm_make_keyword_from_dash_symbol (symbol)
3670Make a keyword object from a @var{symbol} that starts with a dash.
3671For example,
3672
3673@example
3674(make-keyword-from-dash-symbol '-foo)
3675@result{} #:foo
3676@end example
3677@end deffn
3678
3679@deffn {Scheme Procedure} keyword? obj
3680@deffnx {C Function} scm_keyword_p (obj)
3681Return @code{#t} if the argument @var{obj} is a keyword, else
3682@code{#f}.
3683@end deffn
3684
3685@deffn {Scheme Procedure} keyword-dash-symbol keyword
3686@deffnx {C Function} scm_keyword_dash_symbol (keyword)
3687Return the dash symbol for @var{keyword}.
3688This is the inverse of @code{make-keyword-from-dash-symbol}.
3689For example,
3690
3691@example
3692(keyword-dash-symbol #:foo)
3693@result{} -foo
3694@end example
3695@end deffn
3696
3697@deftypefn {C Function} SCM scm_c_make_keyword (char *@var{str})
3698Make a keyword object from a string. For example,
3699
3700@example
3701scm_c_make_keyword ("foo")
3702@result{} #:foo
3703@end example
3704@c
3705@c FIXME: What can be said about the string argument? Currently it's
3706@c not used after creation, but should that be documented?
3707@end deftypefn
3708
3709
3710@node Other Types
3711@subsection ``Functionality-Centric'' Data Types
3712
3713Procedures and macros are documented in their own chapter: see
3714@ref{Procedures and Macros}.
3715
3716Variable objects are documented as part of the description of Guile's
3717module system: see @ref{Variables}.
3718
3719Asyncs, dynamic roots and fluids are described in the chapter on
3720scheduling: see @ref{Scheduling}.
3721
3722Hooks are documented in the chapter on general utility functions: see
3723@ref{Hooks}.
3724
3725Ports are described in the chapter on I/O: see @ref{Input and Output}.
3726
3727
3728@c Local Variables:
3729@c TeX-master: "guile.texi"
3730@c End: