fix compilation of control.c, continuations.c when SCM_ALIGNED is not defined
[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.
9accf3d9 3@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012
07d83abe
MV
4@c Free Software Foundation, Inc.
5@c See the file guile.texi for copying conditions.
6
07d83abe
MV
7@node Simple Data Types
8@section Simple Generic Data Types
9
10This chapter describes those of Guile's simple data types which are
11primarily used for their role as items of generic data. By
12@dfn{simple} we mean data types that are not primarily used as
13containers to hold other data --- i.e.@: pairs, lists, vectors and so on.
14For the documentation of such @dfn{compound} data types, see
15@ref{Compound Data Types}.
16
17@c One of the great strengths of Scheme is that there is no straightforward
18@c distinction between ``data'' and ``functionality''. For example,
19@c Guile's support for dynamic linking could be described:
20
21@c @itemize @bullet
22@c @item
23@c either in a ``data-centric'' way, as the behaviour and properties of the
24@c ``dynamically linked object'' data type, and the operations that may be
25@c applied to instances of this type
26
27@c @item
28@c or in a ``functionality-centric'' way, as the set of procedures that
29@c constitute Guile's support for dynamic linking, in the context of the
30@c module system.
31@c @end itemize
32
33@c The contents of this chapter are, therefore, a matter of judgment. By
34@c @dfn{generic}, we mean to select those data types whose typical use as
35@c @emph{data} in a wide variety of programming contexts is more important
36@c than their use in the implementation of a particular piece of
37@c @emph{functionality}. The last section of this chapter provides
38@c references for all the data types that are documented not here but in a
39@c ``functionality-centric'' way elsewhere in the manual.
40
41@menu
42* Booleans:: True/false values.
43* Numbers:: Numerical data types.
050ab45f
MV
44* Characters:: Single characters.
45* Character Sets:: Sets of characters.
46* Strings:: Sequences of characters.
b242715b 47* Bytevectors:: Sequences of bytes.
07d83abe
MV
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
9accf3d9
AW
81In test condition contexts like @code{if} and @code{cond}
82(@pxref{Conditionals}), where a group of subexpressions will be
83evaluated only if a @var{condition} expression evaluates to ``true'',
84``true'' means any value at all except @code{#f}.
07d83abe
MV
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.
07d83abe
MV
185* Bitwise Operations:: Logical AND, OR, NOT, and so on.
186* Random:: Random number generation.
187@end menu
188
189
190@node Numerical Tower
191@subsubsection Scheme's Numerical ``Tower''
192@rnindex number?
193
194Scheme's numerical ``tower'' consists of the following categories of
195numbers:
196
197@table @dfn
198@item integers
199Whole numbers, positive or negative; e.g.@: --5, 0, 18.
200
201@item rationals
202The set of numbers that can be expressed as @math{@var{p}/@var{q}}
203where @var{p} and @var{q} are integers; e.g.@: @math{9/16} works, but
204pi (an irrational number) doesn't. These include integers
205(@math{@var{n}/1}).
206
207@item real numbers
208The set of numbers that describes all possible positions along a
209one-dimensional line. This includes rationals as well as irrational
210numbers.
211
212@item complex numbers
213The set of numbers that describes all possible positions in a two
214dimensional space. This includes real as well as imaginary numbers
215(@math{@var{a}+@var{b}i}, where @var{a} is the @dfn{real part},
216@var{b} is the @dfn{imaginary part}, and @math{i} is the square root of
217@minus{}1.)
218@end table
219
220It is called a tower because each category ``sits on'' the one that
221follows it, in the sense that every integer is also a rational, every
222rational is also real, and every real number is also a complex number
223(but with zero imaginary part).
224
225In addition to the classification into integers, rationals, reals and
226complex numbers, Scheme also distinguishes between whether a number is
227represented exactly or not. For example, the result of
9f1ba6a9
NJ
228@m{2\sin(\pi/4),2*sin(pi/4)} is exactly @m{\sqrt{2},2^(1/2)}, but Guile
229can represent neither @m{\pi/4,pi/4} nor @m{\sqrt{2},2^(1/2)} exactly.
07d83abe
MV
230Instead, it stores an inexact approximation, using the C type
231@code{double}.
232
233Guile can represent exact rationals of any magnitude, inexact
234rationals that fit into a C @code{double}, and inexact complex numbers
235with @code{double} real and imaginary parts.
236
237The @code{number?} predicate may be applied to any Scheme value to
238discover whether the value is any of the supported numerical types.
239
240@deffn {Scheme Procedure} number? obj
241@deffnx {C Function} scm_number_p (obj)
242Return @code{#t} if @var{obj} is any kind of number, else @code{#f}.
243@end deffn
244
245For example:
246
247@lisp
248(number? 3)
249@result{} #t
250
251(number? "hello there!")
252@result{} #f
253
254(define pi 3.141592654)
255(number? pi)
256@result{} #t
257@end lisp
258
5615f696
MV
259@deftypefn {C Function} int scm_is_number (SCM obj)
260This is equivalent to @code{scm_is_true (scm_number_p (obj))}.
261@end deftypefn
262
07d83abe
MV
263The next few subsections document each of Guile's numerical data types
264in detail.
265
266@node Integers
267@subsubsection Integers
268
269@tpindex Integer numbers
270
271@rnindex integer?
272
273Integers are whole numbers, that is numbers with no fractional part,
274such as 2, 83, and @minus{}3789.
275
276Integers in Guile can be arbitrarily big, as shown by the following
277example.
278
279@lisp
280(define (factorial n)
281 (let loop ((n n) (product 1))
282 (if (= n 0)
283 product
284 (loop (- n 1) (* product n)))))
285
286(factorial 3)
287@result{} 6
288
289(factorial 20)
290@result{} 2432902008176640000
291
292(- (factorial 45))
293@result{} -119622220865480194561963161495657715064383733760000000000
294@end lisp
295
296Readers whose background is in programming languages where integers are
297limited by the need to fit into just 4 or 8 bytes of memory may find
298this surprising, or suspect that Guile's representation of integers is
299inefficient. In fact, Guile achieves a near optimal balance of
300convenience and efficiency by using the host computer's native
301representation of integers where possible, and a more general
302representation where the required number does not fit in the native
303form. Conversion between these two representations is automatic and
304completely invisible to the Scheme level programmer.
305
07d83abe
MV
306C has a host of different integer types, and Guile offers a host of
307functions to convert between them and the @code{SCM} representation.
308For example, a C @code{int} can be handled with @code{scm_to_int} and
309@code{scm_from_int}. Guile also defines a few C integer types of its
310own, to help with differences between systems.
311
312C integer types that are not covered can be handled with the generic
313@code{scm_to_signed_integer} and @code{scm_from_signed_integer} for
314signed types, or with @code{scm_to_unsigned_integer} and
315@code{scm_from_unsigned_integer} for unsigned types.
316
317Scheme integers can be exact and inexact. For example, a number
318written as @code{3.0} with an explicit decimal-point is inexact, but
319it is also an integer. The functions @code{integer?} and
320@code{scm_is_integer} report true for such a number, but the functions
321@code{scm_is_signed_integer} and @code{scm_is_unsigned_integer} only
322allow exact integers and thus report false. Likewise, the conversion
323functions like @code{scm_to_signed_integer} only accept exact
324integers.
325
326The motivation for this behavior is that the inexactness of a number
327should not be lost silently. If you want to allow inexact integers,
877f06c3 328you can explicitly insert a call to @code{inexact->exact} or to its C
07d83abe
MV
329equivalent @code{scm_inexact_to_exact}. (Only inexact integers will
330be converted by this call into exact integers; inexact non-integers
331will become exact fractions.)
332
333@deffn {Scheme Procedure} integer? x
334@deffnx {C Function} scm_integer_p (x)
909fcc97 335Return @code{#t} if @var{x} is an exact or inexact integer number, else
07d83abe
MV
336@code{#f}.
337
338@lisp
339(integer? 487)
340@result{} #t
341
342(integer? 3.0)
343@result{} #t
344
345(integer? -3.4)
346@result{} #f
347
348(integer? +inf.0)
349@result{} #t
350@end lisp
351@end deffn
352
353@deftypefn {C Function} int scm_is_integer (SCM x)
354This is equivalent to @code{scm_is_true (scm_integer_p (x))}.
355@end deftypefn
356
357@defvr {C Type} scm_t_int8
358@defvrx {C Type} scm_t_uint8
359@defvrx {C Type} scm_t_int16
360@defvrx {C Type} scm_t_uint16
361@defvrx {C Type} scm_t_int32
362@defvrx {C Type} scm_t_uint32
363@defvrx {C Type} scm_t_int64
364@defvrx {C Type} scm_t_uint64
365@defvrx {C Type} scm_t_intmax
366@defvrx {C Type} scm_t_uintmax
367The C types are equivalent to the corresponding ISO C types but are
368defined on all platforms, with the exception of @code{scm_t_int64} and
369@code{scm_t_uint64}, which are only defined when a 64-bit type is
370available. For example, @code{scm_t_int8} is equivalent to
371@code{int8_t}.
372
373You can regard these definitions as a stop-gap measure until all
374platforms provide these types. If you know that all the platforms
375that you are interested in already provide these types, it is better
376to use them directly instead of the types provided by Guile.
377@end defvr
378
379@deftypefn {C Function} int scm_is_signed_integer (SCM x, scm_t_intmax min, scm_t_intmax max)
380@deftypefnx {C Function} int scm_is_unsigned_integer (SCM x, scm_t_uintmax min, scm_t_uintmax max)
381Return @code{1} when @var{x} represents an exact integer that is
382between @var{min} and @var{max}, inclusive.
383
384These functions can be used to check whether a @code{SCM} value will
385fit into a given range, such as the range of a given C integer type.
386If you just want to convert a @code{SCM} value to a given C integer
387type, use one of the conversion functions directly.
388@end deftypefn
389
390@deftypefn {C Function} scm_t_intmax scm_to_signed_integer (SCM x, scm_t_intmax min, scm_t_intmax max)
391@deftypefnx {C Function} scm_t_uintmax scm_to_unsigned_integer (SCM x, scm_t_uintmax min, scm_t_uintmax max)
392When @var{x} represents an exact integer that is between @var{min} and
393@var{max} inclusive, return that integer. Else signal an error,
394either a `wrong-type' error when @var{x} is not an exact integer, or
395an `out-of-range' error when it doesn't fit the given range.
396@end deftypefn
397
398@deftypefn {C Function} SCM scm_from_signed_integer (scm_t_intmax x)
399@deftypefnx {C Function} SCM scm_from_unsigned_integer (scm_t_uintmax x)
400Return the @code{SCM} value that represents the integer @var{x}. This
401function will always succeed and will always return an exact number.
402@end deftypefn
403
404@deftypefn {C Function} char scm_to_char (SCM x)
405@deftypefnx {C Function} {signed char} scm_to_schar (SCM x)
406@deftypefnx {C Function} {unsigned char} scm_to_uchar (SCM x)
407@deftypefnx {C Function} short scm_to_short (SCM x)
408@deftypefnx {C Function} {unsigned short} scm_to_ushort (SCM x)
409@deftypefnx {C Function} int scm_to_int (SCM x)
410@deftypefnx {C Function} {unsigned int} scm_to_uint (SCM x)
411@deftypefnx {C Function} long scm_to_long (SCM x)
412@deftypefnx {C Function} {unsigned long} scm_to_ulong (SCM x)
413@deftypefnx {C Function} {long long} scm_to_long_long (SCM x)
414@deftypefnx {C Function} {unsigned long long} scm_to_ulong_long (SCM x)
415@deftypefnx {C Function} size_t scm_to_size_t (SCM x)
416@deftypefnx {C Function} ssize_t scm_to_ssize_t (SCM x)
417@deftypefnx {C Function} scm_t_int8 scm_to_int8 (SCM x)
418@deftypefnx {C Function} scm_t_uint8 scm_to_uint8 (SCM x)
419@deftypefnx {C Function} scm_t_int16 scm_to_int16 (SCM x)
420@deftypefnx {C Function} scm_t_uint16 scm_to_uint16 (SCM x)
421@deftypefnx {C Function} scm_t_int32 scm_to_int32 (SCM x)
422@deftypefnx {C Function} scm_t_uint32 scm_to_uint32 (SCM x)
423@deftypefnx {C Function} scm_t_int64 scm_to_int64 (SCM x)
424@deftypefnx {C Function} scm_t_uint64 scm_to_uint64 (SCM x)
425@deftypefnx {C Function} scm_t_intmax scm_to_intmax (SCM x)
426@deftypefnx {C Function} scm_t_uintmax scm_to_uintmax (SCM x)
427When @var{x} represents an exact integer that fits into the indicated
428C type, return that integer. Else signal an error, either a
429`wrong-type' error when @var{x} is not an exact integer, or an
430`out-of-range' error when it doesn't fit the given range.
431
432The functions @code{scm_to_long_long}, @code{scm_to_ulong_long},
433@code{scm_to_int64}, and @code{scm_to_uint64} are only available when
434the corresponding types are.
435@end deftypefn
436
437@deftypefn {C Function} SCM scm_from_char (char x)
438@deftypefnx {C Function} SCM scm_from_schar (signed char x)
439@deftypefnx {C Function} SCM scm_from_uchar (unsigned char x)
440@deftypefnx {C Function} SCM scm_from_short (short x)
441@deftypefnx {C Function} SCM scm_from_ushort (unsigned short x)
442@deftypefnx {C Function} SCM scm_from_int (int x)
443@deftypefnx {C Function} SCM scm_from_uint (unsigned int x)
444@deftypefnx {C Function} SCM scm_from_long (long x)
445@deftypefnx {C Function} SCM scm_from_ulong (unsigned long x)
446@deftypefnx {C Function} SCM scm_from_long_long (long long x)
447@deftypefnx {C Function} SCM scm_from_ulong_long (unsigned long long x)
448@deftypefnx {C Function} SCM scm_from_size_t (size_t x)
449@deftypefnx {C Function} SCM scm_from_ssize_t (ssize_t x)
450@deftypefnx {C Function} SCM scm_from_int8 (scm_t_int8 x)
451@deftypefnx {C Function} SCM scm_from_uint8 (scm_t_uint8 x)
452@deftypefnx {C Function} SCM scm_from_int16 (scm_t_int16 x)
453@deftypefnx {C Function} SCM scm_from_uint16 (scm_t_uint16 x)
454@deftypefnx {C Function} SCM scm_from_int32 (scm_t_int32 x)
455@deftypefnx {C Function} SCM scm_from_uint32 (scm_t_uint32 x)
456@deftypefnx {C Function} SCM scm_from_int64 (scm_t_int64 x)
457@deftypefnx {C Function} SCM scm_from_uint64 (scm_t_uint64 x)
458@deftypefnx {C Function} SCM scm_from_intmax (scm_t_intmax x)
459@deftypefnx {C Function} SCM scm_from_uintmax (scm_t_uintmax x)
460Return the @code{SCM} value that represents the integer @var{x}.
461These functions will always succeed and will always return an exact
462number.
463@end deftypefn
464
08962922
MV
465@deftypefn {C Function} void scm_to_mpz (SCM val, mpz_t rop)
466Assign @var{val} to the multiple precision integer @var{rop}.
467@var{val} must be an exact integer, otherwise an error will be
468signalled. @var{rop} must have been initialized with @code{mpz_init}
469before this function is called. When @var{rop} is no longer needed
470the occupied space must be freed with @code{mpz_clear}.
471@xref{Initializing Integers,,, gmp, GNU MP Manual}, for details.
472@end deftypefn
473
9f1ba6a9 474@deftypefn {C Function} SCM scm_from_mpz (mpz_t val)
08962922
MV
475Return the @code{SCM} value that represents @var{val}.
476@end deftypefn
477
07d83abe
MV
478@node Reals and Rationals
479@subsubsection Real and Rational Numbers
480@tpindex Real numbers
481@tpindex Rational numbers
482
483@rnindex real?
484@rnindex rational?
485
486Mathematically, the real numbers are the set of numbers that describe
487all possible points along a continuous, infinite, one-dimensional line.
488The rational numbers are the set of all numbers that can be written as
489fractions @var{p}/@var{q}, where @var{p} and @var{q} are integers.
490All rational numbers are also real, but there are real numbers that
995953e5 491are not rational, for example @m{\sqrt{2}, the square root of 2}, and
34942993 492@m{\pi,pi}.
07d83abe
MV
493
494Guile can represent both exact and inexact rational numbers, but it
c960e556
MW
495cannot represent precise finite irrational numbers. Exact rationals are
496represented by storing the numerator and denominator as two exact
497integers. Inexact rationals are stored as floating point numbers using
498the C type @code{double}.
07d83abe
MV
499
500Exact rationals are written as a fraction of integers. There must be
501no whitespace around the slash:
502
503@lisp
5041/2
505-22/7
506@end lisp
507
508Even though the actual encoding of inexact rationals is in binary, it
509may be helpful to think of it as a decimal number with a limited
510number of significant figures and a decimal point somewhere, since
511this corresponds to the standard notation for non-whole numbers. For
512example:
513
514@lisp
5150.34
516-0.00000142857931198
517-5648394822220000000000.0
5184.0
519@end lisp
520
c960e556
MW
521The limited precision of Guile's encoding means that any finite ``real''
522number in Guile can be written in a rational form, by multiplying and
523then dividing by sufficient powers of 10 (or in fact, 2). For example,
524@samp{-0.00000142857931198} is the same as @minus{}142857931198 divided
525by 100000000000000000. In Guile's current incarnation, therefore, the
526@code{rational?} and @code{real?} predicates are equivalent for finite
527numbers.
07d83abe 528
07d83abe 529
c960e556
MW
530Dividing by an exact zero leads to a error message, as one might expect.
531However, dividing by an inexact zero does not produce an error.
532Instead, the result of the division is either plus or minus infinity,
533depending on the sign of the divided number and the sign of the zero
534divisor (some platforms support signed zeroes @samp{-0.0} and
535@samp{+0.0}; @samp{0.0} is the same as @samp{+0.0}).
536
537Dividing zero by an inexact zero yields a @acronym{NaN} (`not a number')
538value, although they are actually considered numbers by Scheme.
539Attempts to compare a @acronym{NaN} value with any number (including
540itself) using @code{=}, @code{<}, @code{>}, @code{<=} or @code{>=}
541always returns @code{#f}. Although a @acronym{NaN} value is not
542@code{=} to itself, it is both @code{eqv?} and @code{equal?} to itself
543and other @acronym{NaN} values. However, the preferred way to test for
544them is by using @code{nan?}.
545
546The real @acronym{NaN} values and infinities are written @samp{+nan.0},
547@samp{+inf.0} and @samp{-inf.0}. This syntax is also recognized by
548@code{read} as an extension to the usual Scheme syntax. These special
549values are considered by Scheme to be inexact real numbers but not
550rational. Note that non-real complex numbers may also contain
551infinities or @acronym{NaN} values in their real or imaginary parts. To
552test a real number to see if it is infinite, a @acronym{NaN} value, or
553neither, use @code{inf?}, @code{nan?}, or @code{finite?}, respectively.
554Every real number in Scheme belongs to precisely one of those three
555classes.
07d83abe
MV
556
557On platforms that follow @acronym{IEEE} 754 for their floating point
558arithmetic, the @samp{+inf.0}, @samp{-inf.0}, and @samp{+nan.0} values
559are implemented using the corresponding @acronym{IEEE} 754 values.
560They behave in arithmetic operations like @acronym{IEEE} 754 describes
561it, i.e., @code{(= +nan.0 +nan.0)} @result{} @code{#f}.
562
07d83abe
MV
563@deffn {Scheme Procedure} real? obj
564@deffnx {C Function} scm_real_p (obj)
565Return @code{#t} if @var{obj} is a real number, else @code{#f}. Note
566that the sets of integer and rational values form subsets of the set
567of real numbers, so the predicate will also be fulfilled if @var{obj}
568is an integer number or a rational number.
569@end deffn
570
571@deffn {Scheme Procedure} rational? x
572@deffnx {C Function} scm_rational_p (x)
573Return @code{#t} if @var{x} is a rational number, @code{#f} otherwise.
574Note that the set of integer values forms a subset of the set of
995953e5 575rational numbers, i.e.@: the predicate will also be fulfilled if
07d83abe 576@var{x} is an integer number.
07d83abe
MV
577@end deffn
578
579@deffn {Scheme Procedure} rationalize x eps
580@deffnx {C Function} scm_rationalize (x, eps)
581Returns the @emph{simplest} rational number differing
582from @var{x} by no more than @var{eps}.
583
584As required by @acronym{R5RS}, @code{rationalize} only returns an
585exact result when both its arguments are exact. Thus, you might need
586to use @code{inexact->exact} on the arguments.
587
588@lisp
589(rationalize (inexact->exact 1.2) 1/100)
590@result{} 6/5
591@end lisp
592
593@end deffn
594
d3df9759
MV
595@deffn {Scheme Procedure} inf? x
596@deffnx {C Function} scm_inf_p (x)
10391e06
AW
597Return @code{#t} if the real number @var{x} is @samp{+inf.0} or
598@samp{-inf.0}. Otherwise return @code{#f}.
07d83abe
MV
599@end deffn
600
601@deffn {Scheme Procedure} nan? x
d3df9759 602@deffnx {C Function} scm_nan_p (x)
10391e06
AW
603Return @code{#t} if the real number @var{x} is @samp{+nan.0}, or
604@code{#f} otherwise.
07d83abe
MV
605@end deffn
606
7112615f
MW
607@deffn {Scheme Procedure} finite? x
608@deffnx {C Function} scm_finite_p (x)
10391e06
AW
609Return @code{#t} if the real number @var{x} is neither infinite nor a
610NaN, @code{#f} otherwise.
7112615f
MW
611@end deffn
612
cdf1ad3b
MV
613@deffn {Scheme Procedure} nan
614@deffnx {C Function} scm_nan ()
c960e556 615Return @samp{+nan.0}, a @acronym{NaN} value.
cdf1ad3b
MV
616@end deffn
617
618@deffn {Scheme Procedure} inf
619@deffnx {C Function} scm_inf ()
c960e556 620Return @samp{+inf.0}, positive infinity.
cdf1ad3b
MV
621@end deffn
622
d3df9759
MV
623@deffn {Scheme Procedure} numerator x
624@deffnx {C Function} scm_numerator (x)
625Return the numerator of the rational number @var{x}.
626@end deffn
627
628@deffn {Scheme Procedure} denominator x
629@deffnx {C Function} scm_denominator (x)
630Return the denominator of the rational number @var{x}.
631@end deffn
632
633@deftypefn {C Function} int scm_is_real (SCM val)
634@deftypefnx {C Function} int scm_is_rational (SCM val)
635Equivalent to @code{scm_is_true (scm_real_p (val))} and
636@code{scm_is_true (scm_rational_p (val))}, respectively.
637@end deftypefn
638
639@deftypefn {C Function} double scm_to_double (SCM val)
640Returns the number closest to @var{val} that is representable as a
641@code{double}. Returns infinity for a @var{val} that is too large in
642magnitude. The argument @var{val} must be a real number.
643@end deftypefn
644
645@deftypefn {C Function} SCM scm_from_double (double val)
be3eb25c 646Return the @code{SCM} value that represents @var{val}. The returned
d3df9759
MV
647value is inexact according to the predicate @code{inexact?}, but it
648will be exactly equal to @var{val}.
649@end deftypefn
650
07d83abe
MV
651@node Complex Numbers
652@subsubsection Complex Numbers
653@tpindex Complex numbers
654
655@rnindex complex?
656
657Complex numbers are the set of numbers that describe all possible points
658in a two-dimensional space. The two coordinates of a particular point
659in this space are known as the @dfn{real} and @dfn{imaginary} parts of
660the complex number that describes that point.
661
662In Guile, complex numbers are written in rectangular form as the sum of
663their real and imaginary parts, using the symbol @code{i} to indicate
664the imaginary part.
665
666@lisp
6673+4i
668@result{}
6693.0+4.0i
670
671(* 3-8i 2.3+0.3i)
672@result{}
6739.3-17.5i
674@end lisp
675
34942993
KR
676@cindex polar form
677@noindent
678Polar form can also be used, with an @samp{@@} between magnitude and
679angle,
680
681@lisp
6821@@3.141592 @result{} -1.0 (approx)
683-1@@1.57079 @result{} 0.0-1.0i (approx)
684@end lisp
685
c7218482
MW
686Guile represents a complex number as a pair of inexact reals, so the
687real and imaginary parts of a complex number have the same properties of
688inexactness and limited precision as single inexact real numbers.
689
690Note that each part of a complex number may contain any inexact real
691value, including the special values @samp{+nan.0}, @samp{+inf.0} and
692@samp{-inf.0}, as well as either of the signed zeroes @samp{0.0} or
693@samp{-0.0}.
694
07d83abe 695
5615f696
MV
696@deffn {Scheme Procedure} complex? z
697@deffnx {C Function} scm_complex_p (z)
64de6db5 698Return @code{#t} if @var{z} is a complex number, @code{#f}
07d83abe 699otherwise. Note that the sets of real, rational and integer
679cceed 700values form subsets of the set of complex numbers, i.e.@: the
64de6db5 701predicate will also be fulfilled if @var{z} is a real,
07d83abe
MV
702rational or integer number.
703@end deffn
704
c9dc8c6c
MV
705@deftypefn {C Function} int scm_is_complex (SCM val)
706Equivalent to @code{scm_is_true (scm_complex_p (val))}.
707@end deftypefn
708
07d83abe
MV
709@node Exactness
710@subsubsection Exact and Inexact Numbers
711@tpindex Exact numbers
712@tpindex Inexact numbers
713
714@rnindex exact?
715@rnindex inexact?
716@rnindex exact->inexact
717@rnindex inexact->exact
718
654b2823
MW
719R5RS requires that, with few exceptions, a calculation involving inexact
720numbers always produces an inexact result. To meet this requirement,
721Guile distinguishes between an exact integer value such as @samp{5} and
722the corresponding inexact integer value which, to the limited precision
07d83abe
MV
723available, has no fractional part, and is printed as @samp{5.0}. Guile
724will only convert the latter value to the former when forced to do so by
725an invocation of the @code{inexact->exact} procedure.
726
654b2823
MW
727The only exception to the above requirement is when the values of the
728inexact numbers do not affect the result. For example @code{(expt n 0)}
729is @samp{1} for any value of @code{n}, therefore @code{(expt 5.0 0)} is
730permitted to return an exact @samp{1}.
731
07d83abe
MV
732@deffn {Scheme Procedure} exact? z
733@deffnx {C Function} scm_exact_p (z)
734Return @code{#t} if the number @var{z} is exact, @code{#f}
735otherwise.
736
737@lisp
738(exact? 2)
739@result{} #t
740
741(exact? 0.5)
742@result{} #f
743
744(exact? (/ 2))
745@result{} #t
746@end lisp
747
748@end deffn
749
022dda69
MG
750@deftypefn {C Function} int scm_is_exact (SCM z)
751Return a @code{1} if the number @var{z} is exact, and @code{0}
752otherwise. This is equivalent to @code{scm_is_true (scm_exact_p (z))}.
753
754An alternate approch to testing the exactness of a number is to
755use @code{scm_is_signed_integer} or @code{scm_is_unsigned_integer}.
756@end deftypefn
757
07d83abe
MV
758@deffn {Scheme Procedure} inexact? z
759@deffnx {C Function} scm_inexact_p (z)
760Return @code{#t} if the number @var{z} is inexact, @code{#f}
761else.
762@end deffn
763
022dda69
MG
764@deftypefn {C Function} int scm_is_inexact (SCM z)
765Return a @code{1} if the number @var{z} is inexact, and @code{0}
766otherwise. This is equivalent to @code{scm_is_true (scm_inexact_p (z))}.
767@end deftypefn
768
07d83abe
MV
769@deffn {Scheme Procedure} inexact->exact z
770@deffnx {C Function} scm_inexact_to_exact (z)
771Return an exact number that is numerically closest to @var{z}, when
772there is one. For inexact rationals, Guile returns the exact rational
773that is numerically equal to the inexact rational. Inexact complex
774numbers with a non-zero imaginary part can not be made exact.
775
776@lisp
777(inexact->exact 0.5)
778@result{} 1/2
779@end lisp
780
781The following happens because 12/10 is not exactly representable as a
782@code{double} (on most platforms). However, when reading a decimal
783number that has been marked exact with the ``#e'' prefix, Guile is
784able to represent it correctly.
785
786@lisp
787(inexact->exact 1.2)
788@result{} 5404319552844595/4503599627370496
789
790#e1.2
791@result{} 6/5
792@end lisp
793
794@end deffn
795
796@c begin (texi-doc-string "guile" "exact->inexact")
797@deffn {Scheme Procedure} exact->inexact z
798@deffnx {C Function} scm_exact_to_inexact (z)
799Convert the number @var{z} to its inexact representation.
800@end deffn
801
802
803@node Number Syntax
804@subsubsection Read Syntax for Numerical Data
805
806The read syntax for integers is a string of digits, optionally
807preceded by a minus or plus character, a code indicating the
808base in which the integer is encoded, and a code indicating whether
809the number is exact or inexact. The supported base codes are:
810
811@table @code
812@item #b
813@itemx #B
814the integer is written in binary (base 2)
815
816@item #o
817@itemx #O
818the integer is written in octal (base 8)
819
820@item #d
821@itemx #D
822the integer is written in decimal (base 10)
823
824@item #x
825@itemx #X
826the integer is written in hexadecimal (base 16)
827@end table
828
829If the base code is omitted, the integer is assumed to be decimal. The
830following examples show how these base codes are used.
831
832@lisp
833-13
834@result{} -13
835
836#d-13
837@result{} -13
838
839#x-13
840@result{} -19
841
842#b+1101
843@result{} 13
844
845#o377
846@result{} 255
847@end lisp
848
849The codes for indicating exactness (which can, incidentally, be applied
850to all numerical values) are:
851
852@table @code
853@item #e
854@itemx #E
855the number is exact
856
857@item #i
858@itemx #I
859the number is inexact.
860@end table
861
862If the exactness indicator is omitted, the number is exact unless it
863contains a radix point. Since Guile can not represent exact complex
864numbers, an error is signalled when asking for them.
865
866@lisp
867(exact? 1.2)
868@result{} #f
869
870(exact? #e1.2)
871@result{} #t
872
873(exact? #e+1i)
874ERROR: Wrong type argument
875@end lisp
876
877Guile also understands the syntax @samp{+inf.0} and @samp{-inf.0} for
878plus and minus infinity, respectively. The value must be written
879exactly as shown, that is, they always must have a sign and exactly
880one zero digit after the decimal point. It also understands
881@samp{+nan.0} and @samp{-nan.0} for the special `not-a-number' value.
882The sign is ignored for `not-a-number' and the value is always printed
883as @samp{+nan.0}.
884
885@node Integer Operations
886@subsubsection Operations on Integer Values
887@rnindex odd?
888@rnindex even?
889@rnindex quotient
890@rnindex remainder
891@rnindex modulo
892@rnindex gcd
893@rnindex lcm
894
895@deffn {Scheme Procedure} odd? n
896@deffnx {C Function} scm_odd_p (n)
897Return @code{#t} if @var{n} is an odd number, @code{#f}
898otherwise.
899@end deffn
900
901@deffn {Scheme Procedure} even? n
902@deffnx {C Function} scm_even_p (n)
903Return @code{#t} if @var{n} is an even number, @code{#f}
904otherwise.
905@end deffn
906
907@c begin (texi-doc-string "guile" "quotient")
908@c begin (texi-doc-string "guile" "remainder")
909@deffn {Scheme Procedure} quotient n d
910@deffnx {Scheme Procedure} remainder n d
911@deffnx {C Function} scm_quotient (n, d)
912@deffnx {C Function} scm_remainder (n, d)
913Return the quotient or remainder from @var{n} divided by @var{d}. The
914quotient is rounded towards zero, and the remainder will have the same
915sign as @var{n}. In all cases quotient and remainder satisfy
916@math{@var{n} = @var{q}*@var{d} + @var{r}}.
917
918@lisp
919(remainder 13 4) @result{} 1
920(remainder -13 4) @result{} -1
921@end lisp
ff62c168 922
8f9da340 923See also @code{truncate-quotient}, @code{truncate-remainder} and
ff62c168 924related operations in @ref{Arithmetic}.
07d83abe
MV
925@end deffn
926
927@c begin (texi-doc-string "guile" "modulo")
928@deffn {Scheme Procedure} modulo n d
929@deffnx {C Function} scm_modulo (n, d)
930Return the remainder from @var{n} divided by @var{d}, with the same
931sign as @var{d}.
932
933@lisp
934(modulo 13 4) @result{} 1
935(modulo -13 4) @result{} 3
936(modulo 13 -4) @result{} -3
937(modulo -13 -4) @result{} -1
938@end lisp
ff62c168 939
8f9da340 940See also @code{floor-quotient}, @code{floor-remainder} and
ff62c168 941related operations in @ref{Arithmetic}.
07d83abe
MV
942@end deffn
943
944@c begin (texi-doc-string "guile" "gcd")
fd8a1df5 945@deffn {Scheme Procedure} gcd x@dots{}
07d83abe
MV
946@deffnx {C Function} scm_gcd (x, y)
947Return the greatest common divisor of all arguments.
948If called without arguments, 0 is returned.
949
950The C function @code{scm_gcd} always takes two arguments, while the
951Scheme function can take an arbitrary number.
952@end deffn
953
954@c begin (texi-doc-string "guile" "lcm")
fd8a1df5 955@deffn {Scheme Procedure} lcm x@dots{}
07d83abe
MV
956@deffnx {C Function} scm_lcm (x, y)
957Return the least common multiple of the arguments.
958If called without arguments, 1 is returned.
959
960The C function @code{scm_lcm} always takes two arguments, while the
961Scheme function can take an arbitrary number.
962@end deffn
963
cdf1ad3b
MV
964@deffn {Scheme Procedure} modulo-expt n k m
965@deffnx {C Function} scm_modulo_expt (n, k, m)
966Return @var{n} raised to the integer exponent
967@var{k}, modulo @var{m}.
968
969@lisp
970(modulo-expt 2 3 5)
971 @result{} 3
972@end lisp
973@end deffn
07d83abe 974
882c8963
MW
975@deftypefn {Scheme Procedure} {} exact-integer-sqrt @var{k}
976@deftypefnx {C Function} void scm_exact_integer_sqrt (SCM @var{k}, SCM *@var{s}, SCM *@var{r})
977Return two exact non-negative integers @var{s} and @var{r}
978such that @math{@var{k} = @var{s}^2 + @var{r}} and
979@math{@var{s}^2 <= @var{k} < (@var{s} + 1)^2}.
980An error is raised if @var{k} is not an exact non-negative integer.
981
982@lisp
983(exact-integer-sqrt 10) @result{} 3 and 1
984@end lisp
985@end deftypefn
986
07d83abe
MV
987@node Comparison
988@subsubsection Comparison Predicates
989@rnindex zero?
990@rnindex positive?
991@rnindex negative?
992
993The C comparison functions below always takes two arguments, while the
994Scheme functions can take an arbitrary number. Also keep in mind that
995the C functions return one of the Scheme boolean values
996@code{SCM_BOOL_T} or @code{SCM_BOOL_F} which are both true as far as C
997is concerned. Thus, always write @code{scm_is_true (scm_num_eq_p (x,
998y))} when testing the two Scheme numbers @code{x} and @code{y} for
999equality, for example.
1000
1001@c begin (texi-doc-string "guile" "=")
1002@deffn {Scheme Procedure} =
1003@deffnx {C Function} scm_num_eq_p (x, y)
1004Return @code{#t} if all parameters are numerically equal.
1005@end deffn
1006
1007@c begin (texi-doc-string "guile" "<")
1008@deffn {Scheme Procedure} <
1009@deffnx {C Function} scm_less_p (x, y)
1010Return @code{#t} if the list of parameters is monotonically
1011increasing.
1012@end deffn
1013
1014@c begin (texi-doc-string "guile" ">")
1015@deffn {Scheme Procedure} >
1016@deffnx {C Function} scm_gr_p (x, y)
1017Return @code{#t} if the list of parameters is monotonically
1018decreasing.
1019@end deffn
1020
1021@c begin (texi-doc-string "guile" "<=")
1022@deffn {Scheme Procedure} <=
1023@deffnx {C Function} scm_leq_p (x, y)
1024Return @code{#t} if the list of parameters is monotonically
1025non-decreasing.
1026@end deffn
1027
1028@c begin (texi-doc-string "guile" ">=")
1029@deffn {Scheme Procedure} >=
1030@deffnx {C Function} scm_geq_p (x, y)
1031Return @code{#t} if the list of parameters is monotonically
1032non-increasing.
1033@end deffn
1034
1035@c begin (texi-doc-string "guile" "zero?")
1036@deffn {Scheme Procedure} zero? z
1037@deffnx {C Function} scm_zero_p (z)
1038Return @code{#t} if @var{z} is an exact or inexact number equal to
1039zero.
1040@end deffn
1041
1042@c begin (texi-doc-string "guile" "positive?")
1043@deffn {Scheme Procedure} positive? x
1044@deffnx {C Function} scm_positive_p (x)
1045Return @code{#t} if @var{x} is an exact or inexact number greater than
1046zero.
1047@end deffn
1048
1049@c begin (texi-doc-string "guile" "negative?")
1050@deffn {Scheme Procedure} negative? x
1051@deffnx {C Function} scm_negative_p (x)
1052Return @code{#t} if @var{x} is an exact or inexact number less than
1053zero.
1054@end deffn
1055
1056
1057@node Conversion
1058@subsubsection Converting Numbers To and From Strings
1059@rnindex number->string
1060@rnindex string->number
1061
b89c4943
LC
1062The following procedures read and write numbers according to their
1063external representation as defined by R5RS (@pxref{Lexical structure,
1064R5RS Lexical Structure,, r5rs, The Revised^5 Report on the Algorithmic
a2f00b9b 1065Language Scheme}). @xref{Number Input and Output, the @code{(ice-9
b89c4943
LC
1066i18n)} module}, for locale-dependent number parsing.
1067
07d83abe
MV
1068@deffn {Scheme Procedure} number->string n [radix]
1069@deffnx {C Function} scm_number_to_string (n, radix)
1070Return a string holding the external representation of the
1071number @var{n} in the given @var{radix}. If @var{n} is
1072inexact, a radix of 10 will be used.
1073@end deffn
1074
1075@deffn {Scheme Procedure} string->number string [radix]
1076@deffnx {C Function} scm_string_to_number (string, radix)
1077Return a number of the maximally precise representation
1078expressed by the given @var{string}. @var{radix} must be an
1079exact integer, either 2, 8, 10, or 16. If supplied, @var{radix}
1080is a default radix that may be overridden by an explicit radix
679cceed 1081prefix in @var{string} (e.g.@: "#o177"). If @var{radix} is not
07d83abe
MV
1082supplied, then the default radix is 10. If string is not a
1083syntactically valid notation for a number, then
1084@code{string->number} returns @code{#f}.
1085@end deffn
1086
1b09b607
KR
1087@deftypefn {C Function} SCM scm_c_locale_stringn_to_number (const char *string, size_t len, unsigned radix)
1088As per @code{string->number} above, but taking a C string, as pointer
1089and length. The string characters should be in the current locale
1090encoding (@code{locale} in the name refers only to that, there's no
1091locale-dependent parsing).
1092@end deftypefn
1093
07d83abe
MV
1094
1095@node Complex
1096@subsubsection Complex Number Operations
1097@rnindex make-rectangular
1098@rnindex make-polar
1099@rnindex real-part
1100@rnindex imag-part
1101@rnindex magnitude
1102@rnindex angle
1103
3323ec06
NJ
1104@deffn {Scheme Procedure} make-rectangular real_part imaginary_part
1105@deffnx {C Function} scm_make_rectangular (real_part, imaginary_part)
1106Return a complex number constructed of the given @var{real-part} and @var{imaginary-part} parts.
07d83abe
MV
1107@end deffn
1108
c7218482
MW
1109@deffn {Scheme Procedure} make-polar mag ang
1110@deffnx {C Function} scm_make_polar (mag, ang)
34942993 1111@cindex polar form
c7218482 1112Return the complex number @var{mag} * e^(i * @var{ang}).
07d83abe
MV
1113@end deffn
1114
1115@c begin (texi-doc-string "guile" "real-part")
1116@deffn {Scheme Procedure} real-part z
1117@deffnx {C Function} scm_real_part (z)
1118Return the real part of the number @var{z}.
1119@end deffn
1120
1121@c begin (texi-doc-string "guile" "imag-part")
1122@deffn {Scheme Procedure} imag-part z
1123@deffnx {C Function} scm_imag_part (z)
1124Return the imaginary part of the number @var{z}.
1125@end deffn
1126
1127@c begin (texi-doc-string "guile" "magnitude")
1128@deffn {Scheme Procedure} magnitude z
1129@deffnx {C Function} scm_magnitude (z)
1130Return the magnitude of the number @var{z}. This is the same as
1131@code{abs} for real arguments, but also allows complex numbers.
1132@end deffn
1133
1134@c begin (texi-doc-string "guile" "angle")
1135@deffn {Scheme Procedure} angle z
1136@deffnx {C Function} scm_angle (z)
1137Return the angle of the complex number @var{z}.
1138@end deffn
1139
5615f696
MV
1140@deftypefn {C Function} SCM scm_c_make_rectangular (double re, double im)
1141@deftypefnx {C Function} SCM scm_c_make_polar (double x, double y)
1142Like @code{scm_make_rectangular} or @code{scm_make_polar},
1143respectively, but these functions take @code{double}s as their
1144arguments.
1145@end deftypefn
1146
1147@deftypefn {C Function} double scm_c_real_part (z)
1148@deftypefnx {C Function} double scm_c_imag_part (z)
1149Returns the real or imaginary part of @var{z} as a @code{double}.
1150@end deftypefn
1151
1152@deftypefn {C Function} double scm_c_magnitude (z)
1153@deftypefnx {C Function} double scm_c_angle (z)
1154Returns the magnitude or angle of @var{z} as a @code{double}.
1155@end deftypefn
1156
07d83abe
MV
1157
1158@node Arithmetic
1159@subsubsection Arithmetic Functions
1160@rnindex max
1161@rnindex min
1162@rnindex +
1163@rnindex *
1164@rnindex -
1165@rnindex /
b1f57ea4
LC
1166@findex 1+
1167@findex 1-
07d83abe
MV
1168@rnindex abs
1169@rnindex floor
1170@rnindex ceiling
1171@rnindex truncate
1172@rnindex round
ff62c168
MW
1173@rnindex euclidean/
1174@rnindex euclidean-quotient
1175@rnindex euclidean-remainder
8f9da340
MW
1176@rnindex floor/
1177@rnindex floor-quotient
1178@rnindex floor-remainder
1179@rnindex ceiling/
1180@rnindex ceiling-quotient
1181@rnindex ceiling-remainder
1182@rnindex truncate/
1183@rnindex truncate-quotient
1184@rnindex truncate-remainder
ff62c168
MW
1185@rnindex centered/
1186@rnindex centered-quotient
1187@rnindex centered-remainder
8f9da340
MW
1188@rnindex round/
1189@rnindex round-quotient
1190@rnindex round-remainder
07d83abe
MV
1191
1192The C arithmetic functions below always takes two arguments, while the
1193Scheme functions can take an arbitrary number. When you need to
1194invoke them with just one argument, for example to compute the
ecb87335 1195equivalent of @code{(- x)}, pass @code{SCM_UNDEFINED} as the second
07d83abe
MV
1196one: @code{scm_difference (x, SCM_UNDEFINED)}.
1197
1198@c begin (texi-doc-string "guile" "+")
1199@deffn {Scheme Procedure} + z1 @dots{}
1200@deffnx {C Function} scm_sum (z1, z2)
1201Return the sum of all parameter values. Return 0 if called without any
1202parameters.
1203@end deffn
1204
1205@c begin (texi-doc-string "guile" "-")
1206@deffn {Scheme Procedure} - z1 z2 @dots{}
1207@deffnx {C Function} scm_difference (z1, z2)
1208If called with one argument @var{z1}, -@var{z1} is returned. Otherwise
1209the sum of all but the first argument are subtracted from the first
1210argument.
1211@end deffn
1212
1213@c begin (texi-doc-string "guile" "*")
1214@deffn {Scheme Procedure} * z1 @dots{}
1215@deffnx {C Function} scm_product (z1, z2)
1216Return the product of all arguments. If called without arguments, 1 is
1217returned.
1218@end deffn
1219
1220@c begin (texi-doc-string "guile" "/")
1221@deffn {Scheme Procedure} / z1 z2 @dots{}
1222@deffnx {C Function} scm_divide (z1, z2)
1223Divide the first argument by the product of the remaining arguments. If
1224called with one argument @var{z1}, 1/@var{z1} is returned.
1225@end deffn
1226
b1f57ea4
LC
1227@deffn {Scheme Procedure} 1+ z
1228@deffnx {C Function} scm_oneplus (z)
1229Return @math{@var{z} + 1}.
1230@end deffn
1231
1232@deffn {Scheme Procedure} 1- z
1233@deffnx {C function} scm_oneminus (z)
1234Return @math{@var{z} - 1}.
1235@end deffn
1236
07d83abe
MV
1237@c begin (texi-doc-string "guile" "abs")
1238@deffn {Scheme Procedure} abs x
1239@deffnx {C Function} scm_abs (x)
1240Return the absolute value of @var{x}.
1241
1242@var{x} must be a number with zero imaginary part. To calculate the
1243magnitude of a complex number, use @code{magnitude} instead.
1244@end deffn
1245
1246@c begin (texi-doc-string "guile" "max")
1247@deffn {Scheme Procedure} max x1 x2 @dots{}
1248@deffnx {C Function} scm_max (x1, x2)
1249Return the maximum of all parameter values.
1250@end deffn
1251
1252@c begin (texi-doc-string "guile" "min")
1253@deffn {Scheme Procedure} min x1 x2 @dots{}
1254@deffnx {C Function} scm_min (x1, x2)
1255Return the minimum of all parameter values.
1256@end deffn
1257
1258@c begin (texi-doc-string "guile" "truncate")
fd8a1df5 1259@deffn {Scheme Procedure} truncate x
07d83abe
MV
1260@deffnx {C Function} scm_truncate_number (x)
1261Round the inexact number @var{x} towards zero.
1262@end deffn
1263
1264@c begin (texi-doc-string "guile" "round")
1265@deffn {Scheme Procedure} round x
1266@deffnx {C Function} scm_round_number (x)
1267Round the inexact number @var{x} to the nearest integer. When exactly
1268halfway between two integers, round to the even one.
1269@end deffn
1270
1271@c begin (texi-doc-string "guile" "floor")
1272@deffn {Scheme Procedure} floor x
1273@deffnx {C Function} scm_floor (x)
1274Round the number @var{x} towards minus infinity.
1275@end deffn
1276
1277@c begin (texi-doc-string "guile" "ceiling")
1278@deffn {Scheme Procedure} ceiling x
1279@deffnx {C Function} scm_ceiling (x)
1280Round the number @var{x} towards infinity.
1281@end deffn
1282
35da08ee
MV
1283@deftypefn {C Function} double scm_c_truncate (double x)
1284@deftypefnx {C Function} double scm_c_round (double x)
1285Like @code{scm_truncate_number} or @code{scm_round_number},
1286respectively, but these functions take and return @code{double}
1287values.
1288@end deftypefn
07d83abe 1289
5fbf680b
MW
1290@deftypefn {Scheme Procedure} {} euclidean/ @var{x} @var{y}
1291@deftypefnx {Scheme Procedure} {} euclidean-quotient @var{x} @var{y}
1292@deftypefnx {Scheme Procedure} {} euclidean-remainder @var{x} @var{y}
1293@deftypefnx {C Function} void scm_euclidean_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1294@deftypefnx {C Function} SCM scm_euclidean_quotient (SCM @var{x}, SCM @var{y})
1295@deftypefnx {C Function} SCM scm_euclidean_remainder (SCM @var{x}, SCM @var{y})
ff62c168
MW
1296These procedures accept two real numbers @var{x} and @var{y}, where the
1297divisor @var{y} must be non-zero. @code{euclidean-quotient} returns the
1298integer @var{q} and @code{euclidean-remainder} returns the real number
1299@var{r} such that @math{@var{x} = @var{q}*@var{y} + @var{r}} and
5fbf680b 1300@math{0 <= @var{r} < |@var{y}|}. @code{euclidean/} returns both @var{q} and
ff62c168
MW
1301@var{r}, and is more efficient than computing each separately. Note
1302that when @math{@var{y} > 0}, @code{euclidean-quotient} returns
1303@math{floor(@var{x}/@var{y})}, otherwise it returns
1304@math{ceiling(@var{x}/@var{y})}.
1305
1306Note that these operators are equivalent to the R6RS operators
1307@code{div}, @code{mod}, and @code{div-and-mod}.
1308
1309@lisp
1310(euclidean-quotient 123 10) @result{} 12
1311(euclidean-remainder 123 10) @result{} 3
1312(euclidean/ 123 10) @result{} 12 and 3
1313(euclidean/ 123 -10) @result{} -12 and 3
1314(euclidean/ -123 10) @result{} -13 and 7
1315(euclidean/ -123 -10) @result{} 13 and 7
1316(euclidean/ -123.2 -63.5) @result{} 2.0 and 3.8
1317(euclidean/ 16/3 -10/7) @result{} -3 and 22/21
1318@end lisp
5fbf680b 1319@end deftypefn
ff62c168 1320
8f9da340
MW
1321@deftypefn {Scheme Procedure} {} floor/ @var{x} @var{y}
1322@deftypefnx {Scheme Procedure} {} floor-quotient @var{x} @var{y}
1323@deftypefnx {Scheme Procedure} {} floor-remainder @var{x} @var{y}
1324@deftypefnx {C Function} void scm_floor_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1325@deftypefnx {C Function} SCM scm_floor_quotient (@var{x}, @var{y})
1326@deftypefnx {C Function} SCM scm_floor_remainder (@var{x}, @var{y})
1327These procedures accept two real numbers @var{x} and @var{y}, where the
1328divisor @var{y} must be non-zero. @code{floor-quotient} returns the
1329integer @var{q} and @code{floor-remainder} returns the real number
1330@var{r} such that @math{@var{q} = floor(@var{x}/@var{y})} and
1331@math{@var{x} = @var{q}*@var{y} + @var{r}}. @code{floor/} returns
1332both @var{q} and @var{r}, and is more efficient than computing each
1333separately. Note that @var{r}, if non-zero, will have the same sign
1334as @var{y}.
1335
ce606606 1336When @var{x} and @var{y} are integers, @code{floor-remainder} is
8f9da340
MW
1337equivalent to the R5RS integer-only operator @code{modulo}.
1338
1339@lisp
1340(floor-quotient 123 10) @result{} 12
1341(floor-remainder 123 10) @result{} 3
1342(floor/ 123 10) @result{} 12 and 3
1343(floor/ 123 -10) @result{} -13 and -7
1344(floor/ -123 10) @result{} -13 and 7
1345(floor/ -123 -10) @result{} 12 and -3
1346(floor/ -123.2 -63.5) @result{} 1.0 and -59.7
1347(floor/ 16/3 -10/7) @result{} -4 and -8/21
1348@end lisp
1349@end deftypefn
1350
1351@deftypefn {Scheme Procedure} {} ceiling/ @var{x} @var{y}
1352@deftypefnx {Scheme Procedure} {} ceiling-quotient @var{x} @var{y}
1353@deftypefnx {Scheme Procedure} {} ceiling-remainder @var{x} @var{y}
1354@deftypefnx {C Function} void scm_ceiling_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1355@deftypefnx {C Function} SCM scm_ceiling_quotient (@var{x}, @var{y})
1356@deftypefnx {C Function} SCM scm_ceiling_remainder (@var{x}, @var{y})
1357These procedures accept two real numbers @var{x} and @var{y}, where the
1358divisor @var{y} must be non-zero. @code{ceiling-quotient} returns the
1359integer @var{q} and @code{ceiling-remainder} returns the real number
1360@var{r} such that @math{@var{q} = ceiling(@var{x}/@var{y})} and
1361@math{@var{x} = @var{q}*@var{y} + @var{r}}. @code{ceiling/} returns
1362both @var{q} and @var{r}, and is more efficient than computing each
1363separately. Note that @var{r}, if non-zero, will have the opposite sign
1364of @var{y}.
1365
1366@lisp
1367(ceiling-quotient 123 10) @result{} 13
1368(ceiling-remainder 123 10) @result{} -7
1369(ceiling/ 123 10) @result{} 13 and -7
1370(ceiling/ 123 -10) @result{} -12 and 3
1371(ceiling/ -123 10) @result{} -12 and -3
1372(ceiling/ -123 -10) @result{} 13 and 7
1373(ceiling/ -123.2 -63.5) @result{} 2.0 and 3.8
1374(ceiling/ 16/3 -10/7) @result{} -3 and 22/21
1375@end lisp
1376@end deftypefn
1377
1378@deftypefn {Scheme Procedure} {} truncate/ @var{x} @var{y}
1379@deftypefnx {Scheme Procedure} {} truncate-quotient @var{x} @var{y}
1380@deftypefnx {Scheme Procedure} {} truncate-remainder @var{x} @var{y}
1381@deftypefnx {C Function} void scm_truncate_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1382@deftypefnx {C Function} SCM scm_truncate_quotient (@var{x}, @var{y})
1383@deftypefnx {C Function} SCM scm_truncate_remainder (@var{x}, @var{y})
1384These procedures accept two real numbers @var{x} and @var{y}, where the
1385divisor @var{y} must be non-zero. @code{truncate-quotient} returns the
1386integer @var{q} and @code{truncate-remainder} returns the real number
1387@var{r} such that @var{q} is @math{@var{x}/@var{y}} rounded toward zero,
1388and @math{@var{x} = @var{q}*@var{y} + @var{r}}. @code{truncate/} returns
1389both @var{q} and @var{r}, and is more efficient than computing each
1390separately. Note that @var{r}, if non-zero, will have the same sign
1391as @var{x}.
1392
ce606606 1393When @var{x} and @var{y} are integers, these operators are
a6b087be
MW
1394equivalent to the R5RS integer-only operators @code{quotient} and
1395@code{remainder}.
8f9da340
MW
1396
1397@lisp
1398(truncate-quotient 123 10) @result{} 12
1399(truncate-remainder 123 10) @result{} 3
1400(truncate/ 123 10) @result{} 12 and 3
1401(truncate/ 123 -10) @result{} -12 and 3
1402(truncate/ -123 10) @result{} -12 and -3
1403(truncate/ -123 -10) @result{} 12 and -3
1404(truncate/ -123.2 -63.5) @result{} 1.0 and -59.7
1405(truncate/ 16/3 -10/7) @result{} -3 and 22/21
1406@end lisp
1407@end deftypefn
1408
5fbf680b
MW
1409@deftypefn {Scheme Procedure} {} centered/ @var{x} @var{y}
1410@deftypefnx {Scheme Procedure} {} centered-quotient @var{x} @var{y}
1411@deftypefnx {Scheme Procedure} {} centered-remainder @var{x} @var{y}
1412@deftypefnx {C Function} void scm_centered_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1413@deftypefnx {C Function} SCM scm_centered_quotient (SCM @var{x}, SCM @var{y})
1414@deftypefnx {C Function} SCM scm_centered_remainder (SCM @var{x}, SCM @var{y})
ff62c168
MW
1415These procedures accept two real numbers @var{x} and @var{y}, where the
1416divisor @var{y} must be non-zero. @code{centered-quotient} returns the
1417integer @var{q} and @code{centered-remainder} returns the real number
1418@var{r} such that @math{@var{x} = @var{q}*@var{y} + @var{r}} and
5fbf680b 1419@math{-|@var{y}/2| <= @var{r} < |@var{y}/2|}. @code{centered/}
ff62c168
MW
1420returns both @var{q} and @var{r}, and is more efficient than computing
1421each separately.
1422
1423Note that @code{centered-quotient} returns @math{@var{x}/@var{y}}
1424rounded to the nearest integer. When @math{@var{x}/@var{y}} lies
1425exactly half-way between two integers, the tie is broken according to
1426the sign of @var{y}. If @math{@var{y} > 0}, ties are rounded toward
1427positive infinity, otherwise they are rounded toward negative infinity.
5fbf680b
MW
1428This is a consequence of the requirement that
1429@math{-|@var{y}/2| <= @var{r} < |@var{y}/2|}.
ff62c168
MW
1430
1431Note that these operators are equivalent to the R6RS operators
1432@code{div0}, @code{mod0}, and @code{div0-and-mod0}.
1433
1434@lisp
1435(centered-quotient 123 10) @result{} 12
1436(centered-remainder 123 10) @result{} 3
1437(centered/ 123 10) @result{} 12 and 3
1438(centered/ 123 -10) @result{} -12 and 3
1439(centered/ -123 10) @result{} -12 and -3
1440(centered/ -123 -10) @result{} 12 and -3
8f9da340
MW
1441(centered/ 125 10) @result{} 13 and -5
1442(centered/ 127 10) @result{} 13 and -3
1443(centered/ 135 10) @result{} 14 and -5
ff62c168
MW
1444(centered/ -123.2 -63.5) @result{} 2.0 and 3.8
1445(centered/ 16/3 -10/7) @result{} -4 and -8/21
1446@end lisp
5fbf680b 1447@end deftypefn
ff62c168 1448
8f9da340
MW
1449@deftypefn {Scheme Procedure} {} round/ @var{x} @var{y}
1450@deftypefnx {Scheme Procedure} {} round-quotient @var{x} @var{y}
1451@deftypefnx {Scheme Procedure} {} round-remainder @var{x} @var{y}
1452@deftypefnx {C Function} void scm_round_divide (SCM @var{x}, SCM @var{y}, SCM *@var{q}, SCM *@var{r})
1453@deftypefnx {C Function} SCM scm_round_quotient (@var{x}, @var{y})
1454@deftypefnx {C Function} SCM scm_round_remainder (@var{x}, @var{y})
1455These procedures accept two real numbers @var{x} and @var{y}, where the
1456divisor @var{y} must be non-zero. @code{round-quotient} returns the
1457integer @var{q} and @code{round-remainder} returns the real number
1458@var{r} such that @math{@var{x} = @var{q}*@var{y} + @var{r}} and
1459@var{q} is @math{@var{x}/@var{y}} rounded to the nearest integer,
1460with ties going to the nearest even integer. @code{round/}
1461returns both @var{q} and @var{r}, and is more efficient than computing
1462each separately.
1463
1464Note that @code{round/} and @code{centered/} are almost equivalent, but
1465their behavior differs when @math{@var{x}/@var{y}} lies exactly half-way
1466between two integers. In this case, @code{round/} chooses the nearest
1467even integer, whereas @code{centered/} chooses in such a way to satisfy
1468the constraint @math{-|@var{y}/2| <= @var{r} < |@var{y}/2|}, which
1469is stronger than the corresponding constraint for @code{round/},
1470@math{-|@var{y}/2| <= @var{r} <= |@var{y}/2|}. In particular,
1471when @var{x} and @var{y} are integers, the number of possible remainders
1472returned by @code{centered/} is @math{|@var{y}|}, whereas the number of
1473possible remainders returned by @code{round/} is @math{|@var{y}|+1} when
1474@var{y} is even.
1475
1476@lisp
1477(round-quotient 123 10) @result{} 12
1478(round-remainder 123 10) @result{} 3
1479(round/ 123 10) @result{} 12 and 3
1480(round/ 123 -10) @result{} -12 and 3
1481(round/ -123 10) @result{} -12 and -3
1482(round/ -123 -10) @result{} 12 and -3
1483(round/ 125 10) @result{} 12 and 5
1484(round/ 127 10) @result{} 13 and -3
1485(round/ 135 10) @result{} 14 and -5
1486(round/ -123.2 -63.5) @result{} 2.0 and 3.8
1487(round/ 16/3 -10/7) @result{} -4 and -8/21
1488@end lisp
1489@end deftypefn
1490
07d83abe
MV
1491@node Scientific
1492@subsubsection Scientific Functions
1493
1494The following procedures accept any kind of number as arguments,
1495including complex numbers.
1496
1497@rnindex sqrt
1498@c begin (texi-doc-string "guile" "sqrt")
1499@deffn {Scheme Procedure} sqrt z
40296bab 1500Return the square root of @var{z}. Of the two possible roots
ecb87335 1501(positive and negative), the one with a positive real part is
40296bab
KR
1502returned, or if that's zero then a positive imaginary part. Thus,
1503
1504@example
1505(sqrt 9.0) @result{} 3.0
1506(sqrt -9.0) @result{} 0.0+3.0i
1507(sqrt 1.0+1.0i) @result{} 1.09868411346781+0.455089860562227i
1508(sqrt -1.0-1.0i) @result{} 0.455089860562227-1.09868411346781i
1509@end example
07d83abe
MV
1510@end deffn
1511
1512@rnindex expt
1513@c begin (texi-doc-string "guile" "expt")
1514@deffn {Scheme Procedure} expt z1 z2
1515Return @var{z1} raised to the power of @var{z2}.
1516@end deffn
1517
1518@rnindex sin
1519@c begin (texi-doc-string "guile" "sin")
1520@deffn {Scheme Procedure} sin z
1521Return the sine of @var{z}.
1522@end deffn
1523
1524@rnindex cos
1525@c begin (texi-doc-string "guile" "cos")
1526@deffn {Scheme Procedure} cos z
1527Return the cosine of @var{z}.
1528@end deffn
1529
1530@rnindex tan
1531@c begin (texi-doc-string "guile" "tan")
1532@deffn {Scheme Procedure} tan z
1533Return the tangent of @var{z}.
1534@end deffn
1535
1536@rnindex asin
1537@c begin (texi-doc-string "guile" "asin")
1538@deffn {Scheme Procedure} asin z
1539Return the arcsine of @var{z}.
1540@end deffn
1541
1542@rnindex acos
1543@c begin (texi-doc-string "guile" "acos")
1544@deffn {Scheme Procedure} acos z
1545Return the arccosine of @var{z}.
1546@end deffn
1547
1548@rnindex atan
1549@c begin (texi-doc-string "guile" "atan")
1550@deffn {Scheme Procedure} atan z
1551@deffnx {Scheme Procedure} atan y x
1552Return the arctangent of @var{z}, or of @math{@var{y}/@var{x}}.
1553@end deffn
1554
1555@rnindex exp
1556@c begin (texi-doc-string "guile" "exp")
1557@deffn {Scheme Procedure} exp z
1558Return e to the power of @var{z}, where e is the base of natural
1559logarithms (2.71828@dots{}).
1560@end deffn
1561
1562@rnindex log
1563@c begin (texi-doc-string "guile" "log")
1564@deffn {Scheme Procedure} log z
1565Return the natural logarithm of @var{z}.
1566@end deffn
1567
1568@c begin (texi-doc-string "guile" "log10")
1569@deffn {Scheme Procedure} log10 z
1570Return the base 10 logarithm of @var{z}.
1571@end deffn
1572
1573@c begin (texi-doc-string "guile" "sinh")
1574@deffn {Scheme Procedure} sinh z
1575Return the hyperbolic sine of @var{z}.
1576@end deffn
1577
1578@c begin (texi-doc-string "guile" "cosh")
1579@deffn {Scheme Procedure} cosh z
1580Return the hyperbolic cosine of @var{z}.
1581@end deffn
1582
1583@c begin (texi-doc-string "guile" "tanh")
1584@deffn {Scheme Procedure} tanh z
1585Return the hyperbolic tangent of @var{z}.
1586@end deffn
1587
1588@c begin (texi-doc-string "guile" "asinh")
1589@deffn {Scheme Procedure} asinh z
1590Return the hyperbolic arcsine of @var{z}.
1591@end deffn
1592
1593@c begin (texi-doc-string "guile" "acosh")
1594@deffn {Scheme Procedure} acosh z
1595Return the hyperbolic arccosine of @var{z}.
1596@end deffn
1597
1598@c begin (texi-doc-string "guile" "atanh")
1599@deffn {Scheme Procedure} atanh z
1600Return the hyperbolic arctangent of @var{z}.
1601@end deffn
1602
1603
07d83abe
MV
1604@node Bitwise Operations
1605@subsubsection Bitwise Operations
1606
1607For the following bitwise functions, negative numbers are treated as
1608infinite precision twos-complements. For instance @math{-6} is bits
1609@math{@dots{}111010}, with infinitely many ones on the left. It can
1610be seen that adding 6 (binary 110) to such a bit pattern gives all
1611zeros.
1612
1613@deffn {Scheme Procedure} logand n1 n2 @dots{}
1614@deffnx {C Function} scm_logand (n1, n2)
1615Return the bitwise @sc{and} of the integer arguments.
1616
1617@lisp
1618(logand) @result{} -1
1619(logand 7) @result{} 7
1620(logand #b111 #b011 #b001) @result{} 1
1621@end lisp
1622@end deffn
1623
1624@deffn {Scheme Procedure} logior n1 n2 @dots{}
1625@deffnx {C Function} scm_logior (n1, n2)
1626Return the bitwise @sc{or} of the integer arguments.
1627
1628@lisp
1629(logior) @result{} 0
1630(logior 7) @result{} 7
1631(logior #b000 #b001 #b011) @result{} 3
1632@end lisp
1633@end deffn
1634
1635@deffn {Scheme Procedure} logxor n1 n2 @dots{}
1636@deffnx {C Function} scm_loxor (n1, n2)
1637Return the bitwise @sc{xor} of the integer arguments. A bit is
1638set in the result if it is set in an odd number of arguments.
1639
1640@lisp
1641(logxor) @result{} 0
1642(logxor 7) @result{} 7
1643(logxor #b000 #b001 #b011) @result{} 2
1644(logxor #b000 #b001 #b011 #b011) @result{} 1
1645@end lisp
1646@end deffn
1647
1648@deffn {Scheme Procedure} lognot n
1649@deffnx {C Function} scm_lognot (n)
1650Return the integer which is the ones-complement of the integer
1651argument, ie.@: each 0 bit is changed to 1 and each 1 bit to 0.
1652
1653@lisp
1654(number->string (lognot #b10000000) 2)
1655 @result{} "-10000001"
1656(number->string (lognot #b0) 2)
1657 @result{} "-1"
1658@end lisp
1659@end deffn
1660
1661@deffn {Scheme Procedure} logtest j k
1662@deffnx {C Function} scm_logtest (j, k)
a46648ac
KR
1663Test whether @var{j} and @var{k} have any 1 bits in common. This is
1664equivalent to @code{(not (zero? (logand j k)))}, but without actually
1665calculating the @code{logand}, just testing for non-zero.
07d83abe 1666
a46648ac 1667@lisp
07d83abe
MV
1668(logtest #b0100 #b1011) @result{} #f
1669(logtest #b0100 #b0111) @result{} #t
1670@end lisp
1671@end deffn
1672
1673@deffn {Scheme Procedure} logbit? index j
1674@deffnx {C Function} scm_logbit_p (index, j)
a46648ac
KR
1675Test whether bit number @var{index} in @var{j} is set. @var{index}
1676starts from 0 for the least significant bit.
07d83abe 1677
a46648ac 1678@lisp
07d83abe
MV
1679(logbit? 0 #b1101) @result{} #t
1680(logbit? 1 #b1101) @result{} #f
1681(logbit? 2 #b1101) @result{} #t
1682(logbit? 3 #b1101) @result{} #t
1683(logbit? 4 #b1101) @result{} #f
1684@end lisp
1685@end deffn
1686
1687@deffn {Scheme Procedure} ash n cnt
1688@deffnx {C Function} scm_ash (n, cnt)
1689Return @var{n} shifted left by @var{cnt} bits, or shifted right if
1690@var{cnt} is negative. This is an ``arithmetic'' shift.
1691
1692This is effectively a multiplication by @m{2^{cnt}, 2^@var{cnt}}, and
1693when @var{cnt} is negative it's a division, rounded towards negative
1694infinity. (Note that this is not the same rounding as @code{quotient}
1695does.)
1696
1697With @var{n} viewed as an infinite precision twos complement,
1698@code{ash} means a left shift introducing zero bits, or a right shift
1699dropping bits.
1700
1701@lisp
1702(number->string (ash #b1 3) 2) @result{} "1000"
1703(number->string (ash #b1010 -1) 2) @result{} "101"
1704
1705;; -23 is bits ...11101001, -6 is bits ...111010
1706(ash -23 -2) @result{} -6
1707@end lisp
1708@end deffn
1709
1710@deffn {Scheme Procedure} logcount n
1711@deffnx {C Function} scm_logcount (n)
a46648ac 1712Return the number of bits in integer @var{n}. If @var{n} is
07d83abe
MV
1713positive, the 1-bits in its binary representation are counted.
1714If negative, the 0-bits in its two's-complement binary
a46648ac 1715representation are counted. If zero, 0 is returned.
07d83abe
MV
1716
1717@lisp
1718(logcount #b10101010)
1719 @result{} 4
1720(logcount 0)
1721 @result{} 0
1722(logcount -2)
1723 @result{} 1
1724@end lisp
1725@end deffn
1726
1727@deffn {Scheme Procedure} integer-length n
1728@deffnx {C Function} scm_integer_length (n)
1729Return the number of bits necessary to represent @var{n}.
1730
1731For positive @var{n} this is how many bits to the most significant one
1732bit. For negative @var{n} it's how many bits to the most significant
1733zero bit in twos complement form.
1734
1735@lisp
1736(integer-length #b10101010) @result{} 8
1737(integer-length #b1111) @result{} 4
1738(integer-length 0) @result{} 0
1739(integer-length -1) @result{} 0
1740(integer-length -256) @result{} 8
1741(integer-length -257) @result{} 9
1742@end lisp
1743@end deffn
1744
1745@deffn {Scheme Procedure} integer-expt n k
1746@deffnx {C Function} scm_integer_expt (n, k)
a46648ac
KR
1747Return @var{n} raised to the power @var{k}. @var{k} must be an exact
1748integer, @var{n} can be any number.
1749
1750Negative @var{k} is supported, and results in @m{1/n^|k|, 1/n^abs(k)}
1751in the usual way. @math{@var{n}^0} is 1, as usual, and that includes
1752@math{0^0} is 1.
07d83abe
MV
1753
1754@lisp
a46648ac
KR
1755(integer-expt 2 5) @result{} 32
1756(integer-expt -3 3) @result{} -27
1757(integer-expt 5 -3) @result{} 1/125
1758(integer-expt 0 0) @result{} 1
07d83abe
MV
1759@end lisp
1760@end deffn
1761
1762@deffn {Scheme Procedure} bit-extract n start end
1763@deffnx {C Function} scm_bit_extract (n, start, end)
1764Return the integer composed of the @var{start} (inclusive)
1765through @var{end} (exclusive) bits of @var{n}. The
1766@var{start}th bit becomes the 0-th bit in the result.
1767
1768@lisp
1769(number->string (bit-extract #b1101101010 0 4) 2)
1770 @result{} "1010"
1771(number->string (bit-extract #b1101101010 4 9) 2)
1772 @result{} "10110"
1773@end lisp
1774@end deffn
1775
1776
1777@node Random
1778@subsubsection Random Number Generation
1779
1780Pseudo-random numbers are generated from a random state object, which
77b13912 1781can be created with @code{seed->random-state} or
679cceed 1782@code{datum->random-state}. An external representation (i.e.@: one
77b13912
AR
1783which can written with @code{write} and read with @code{read}) of a
1784random state object can be obtained via
1d454874 1785@code{random-state->datum}. The @var{state} parameter to the
77b13912
AR
1786various functions below is optional, it defaults to the state object
1787in the @code{*random-state*} variable.
07d83abe
MV
1788
1789@deffn {Scheme Procedure} copy-random-state [state]
1790@deffnx {C Function} scm_copy_random_state (state)
1791Return a copy of the random state @var{state}.
1792@end deffn
1793
1794@deffn {Scheme Procedure} random n [state]
1795@deffnx {C Function} scm_random (n, state)
1796Return a number in [0, @var{n}).
1797
1798Accepts a positive integer or real n and returns a
1799number of the same type between zero (inclusive) and
1800@var{n} (exclusive). The values returned have a uniform
1801distribution.
1802@end deffn
1803
1804@deffn {Scheme Procedure} random:exp [state]
1805@deffnx {C Function} scm_random_exp (state)
1806Return an inexact real in an exponential distribution with mean
18071. For an exponential distribution with mean @var{u} use @code{(*
1808@var{u} (random:exp))}.
1809@end deffn
1810
1811@deffn {Scheme Procedure} random:hollow-sphere! vect [state]
1812@deffnx {C Function} scm_random_hollow_sphere_x (vect, state)
1813Fills @var{vect} with inexact real random numbers the sum of whose
1814squares is equal to 1.0. Thinking of @var{vect} as coordinates in
1815space of dimension @var{n} @math{=} @code{(vector-length @var{vect})},
1816the coordinates are uniformly distributed over the surface of the unit
1817n-sphere.
1818@end deffn
1819
1820@deffn {Scheme Procedure} random:normal [state]
1821@deffnx {C Function} scm_random_normal (state)
1822Return an inexact real in a normal distribution. The distribution
1823used has mean 0 and standard deviation 1. For a normal distribution
1824with mean @var{m} and standard deviation @var{d} use @code{(+ @var{m}
1825(* @var{d} (random:normal)))}.
1826@end deffn
1827
1828@deffn {Scheme Procedure} random:normal-vector! vect [state]
1829@deffnx {C Function} scm_random_normal_vector_x (vect, state)
1830Fills @var{vect} with inexact real random numbers that are
1831independent and standard normally distributed
1832(i.e., with mean 0 and variance 1).
1833@end deffn
1834
1835@deffn {Scheme Procedure} random:solid-sphere! vect [state]
1836@deffnx {C Function} scm_random_solid_sphere_x (vect, state)
1837Fills @var{vect} with inexact real random numbers the sum of whose
1838squares is less than 1.0. Thinking of @var{vect} as coordinates in
1839space of dimension @var{n} @math{=} @code{(vector-length @var{vect})},
1840the coordinates are uniformly distributed within the unit
4497bd2f 1841@var{n}-sphere.
07d83abe
MV
1842@c FIXME: What does this mean, particularly the n-sphere part?
1843@end deffn
1844
1845@deffn {Scheme Procedure} random:uniform [state]
1846@deffnx {C Function} scm_random_uniform (state)
1847Return a uniformly distributed inexact real random number in
1848[0,1).
1849@end deffn
1850
1851@deffn {Scheme Procedure} seed->random-state seed
1852@deffnx {C Function} scm_seed_to_random_state (seed)
1853Return a new random state using @var{seed}.
1854@end deffn
1855
1d454874
AW
1856@deffn {Scheme Procedure} datum->random-state datum
1857@deffnx {C Function} scm_datum_to_random_state (datum)
1858Return a new random state from @var{datum}, which should have been
1859obtained by @code{random-state->datum}.
77b13912
AR
1860@end deffn
1861
1d454874
AW
1862@deffn {Scheme Procedure} random-state->datum state
1863@deffnx {C Function} scm_random_state_to_datum (state)
1864Return a datum representation of @var{state} that may be written out and
1865read back with the Scheme reader.
77b13912
AR
1866@end deffn
1867
d47db067
MW
1868@deffn {Scheme Procedure} random-state-from-platform
1869@deffnx {C Function} scm_random_state_from_platform ()
1870Construct a new random state seeded from a platform-specific source of
1871entropy, appropriate for use in non-security-critical applications.
1872Currently @file{/dev/urandom} is tried first, or else the seed is based
1873on the time, date, process ID, an address from a freshly allocated heap
1874cell, an address from the local stack frame, and a high-resolution timer
1875if available.
1876@end deffn
1877
07d83abe
MV
1878@defvar *random-state*
1879The global random state used by the above functions when the
1880@var{state} parameter is not given.
1881@end defvar
1882
8c726cf0
NJ
1883Note that the initial value of @code{*random-state*} is the same every
1884time Guile starts up. Therefore, if you don't pass a @var{state}
1885parameter to the above procedures, and you don't set
1886@code{*random-state*} to @code{(seed->random-state your-seed)}, where
1887@code{your-seed} is something that @emph{isn't} the same every time,
1888you'll get the same sequence of ``random'' numbers on every run.
1889
1890For example, unless the relevant source code has changed, @code{(map
1891random (cdr (iota 30)))}, if the first use of random numbers since
1892Guile started up, will always give:
1893
1894@lisp
1895(map random (cdr (iota 19)))
1896@result{}
1897(0 1 1 2 2 2 1 2 6 7 10 0 5 3 12 5 5 12)
1898@end lisp
1899
d47db067
MW
1900To seed the random state in a sensible way for non-security-critical
1901applications, do this during initialization of your program:
8c726cf0
NJ
1902
1903@lisp
d47db067 1904(set! *random-state* (random-state-from-platform))
8c726cf0
NJ
1905@end lisp
1906
07d83abe
MV
1907
1908@node Characters
1909@subsection Characters
1910@tpindex Characters
1911
3f12aedb
MG
1912In Scheme, there is a data type to describe a single character.
1913
1914Defining what exactly a character @emph{is} can be more complicated
bb15a36c
MG
1915than it seems. Guile follows the advice of R6RS and uses The Unicode
1916Standard to help define what a character is. So, for Guile, a
1917character is anything in the Unicode Character Database.
1918
1919@cindex code point
1920@cindex Unicode code point
1921
1922The Unicode Character Database is basically a table of characters
1923indexed using integers called 'code points'. Valid code points are in
1924the ranges 0 to @code{#xD7FF} inclusive or @code{#xE000} to
1925@code{#x10FFFF} inclusive, which is about 1.1 million code points.
1926
1927@cindex designated code point
1928@cindex code point, designated
1929
1930Any code point that has been assigned to a character or that has
1931otherwise been given a meaning by Unicode is called a 'designated code
1932point'. Most of the designated code points, about 200,000 of them,
1933indicate characters, accents or other combining marks that modify
1934other characters, symbols, whitespace, and control characters. Some
1935are not characters but indicators that suggest how to format or
1936display neighboring characters.
1937
1938@cindex reserved code point
1939@cindex code point, reserved
1940
1941If a code point is not a designated code point -- if it has not been
1942assigned to a character by The Unicode Standard -- it is a 'reserved
1943code point', meaning that they are reserved for future use. Most of
1944the code points, about 800,000, are 'reserved code points'.
1945
1946By convention, a Unicode code point is written as
1947``U+XXXX'' where ``XXXX'' is a hexadecimal number. Please note that
1948this convenient notation is not valid code. Guile does not interpret
1949``U+XXXX'' as a character.
3f12aedb 1950
050ab45f
MV
1951In Scheme, a character literal is written as @code{#\@var{name}} where
1952@var{name} is the name of the character that you want. Printable
1953characters have their usual single character name; for example,
bb15a36c
MG
1954@code{#\a} is a lower case @code{a}.
1955
1956Some of the code points are 'combining characters' that are not meant
1957to be printed by themselves but are instead meant to modify the
1958appearance of the previous character. For combining characters, an
1959alternate form of the character literal is @code{#\} followed by
1960U+25CC (a small, dotted circle), followed by the combining character.
1961This allows the combining character to be drawn on the circle, not on
1962the backslash of @code{#\}.
1963
1964Many of the non-printing characters, such as whitespace characters and
1965control characters, also have names.
07d83abe 1966
15b6a6b2
MG
1967The most commonly used non-printing characters have long character
1968names, described in the table below.
1969
1970@multitable {@code{#\backspace}} {Preferred}
1971@item Character Name @tab Codepoint
1972@item @code{#\nul} @tab U+0000
1973@item @code{#\alarm} @tab u+0007
1974@item @code{#\backspace} @tab U+0008
1975@item @code{#\tab} @tab U+0009
1976@item @code{#\linefeed} @tab U+000A
1977@item @code{#\newline} @tab U+000A
1978@item @code{#\vtab} @tab U+000B
1979@item @code{#\page} @tab U+000C
1980@item @code{#\return} @tab U+000D
1981@item @code{#\esc} @tab U+001B
1982@item @code{#\space} @tab U+0020
1983@item @code{#\delete} @tab U+007F
1984@end multitable
1985
1986There are also short names for all of the ``C0 control characters''
1987(those with code points below 32). The following table lists the short
1988name for each character.
07d83abe
MV
1989
1990@multitable @columnfractions .25 .25 .25 .25
1991@item 0 = @code{#\nul}
1992 @tab 1 = @code{#\soh}
1993 @tab 2 = @code{#\stx}
1994 @tab 3 = @code{#\etx}
1995@item 4 = @code{#\eot}
1996 @tab 5 = @code{#\enq}
1997 @tab 6 = @code{#\ack}
1998 @tab 7 = @code{#\bel}
1999@item 8 = @code{#\bs}
2000 @tab 9 = @code{#\ht}
6ea30487 2001 @tab 10 = @code{#\lf}
07d83abe 2002 @tab 11 = @code{#\vt}
3f12aedb 2003@item 12 = @code{#\ff}
07d83abe
MV
2004 @tab 13 = @code{#\cr}
2005 @tab 14 = @code{#\so}
2006 @tab 15 = @code{#\si}
2007@item 16 = @code{#\dle}
2008 @tab 17 = @code{#\dc1}
2009 @tab 18 = @code{#\dc2}
2010 @tab 19 = @code{#\dc3}
2011@item 20 = @code{#\dc4}
2012 @tab 21 = @code{#\nak}
2013 @tab 22 = @code{#\syn}
2014 @tab 23 = @code{#\etb}
2015@item 24 = @code{#\can}
2016 @tab 25 = @code{#\em}
2017 @tab 26 = @code{#\sub}
2018 @tab 27 = @code{#\esc}
2019@item 28 = @code{#\fs}
2020 @tab 29 = @code{#\gs}
2021 @tab 30 = @code{#\rs}
2022 @tab 31 = @code{#\us}
2023@item 32 = @code{#\sp}
2024@end multitable
2025
15b6a6b2
MG
2026The short name for the ``delete'' character (code point U+007F) is
2027@code{#\del}.
07d83abe 2028
15b6a6b2
MG
2029There are also a few alternative names left over for compatibility with
2030previous versions of Guile.
07d83abe 2031
3f12aedb
MG
2032@multitable {@code{#\backspace}} {Preferred}
2033@item Alternate @tab Standard
3f12aedb 2034@item @code{#\nl} @tab @code{#\newline}
15b6a6b2 2035@item @code{#\np} @tab @code{#\page}
07d83abe
MV
2036@item @code{#\null} @tab @code{#\nul}
2037@end multitable
2038
bb15a36c
MG
2039Characters may also be written using their code point values. They can
2040be written with as an octal number, such as @code{#\10} for
2041@code{#\bs} or @code{#\177} for @code{#\del}.
3f12aedb 2042
0f3a70cf
MG
2043If one prefers hex to octal, there is an additional syntax for character
2044escapes: @code{#\xHHHH} -- the letter 'x' followed by a hexadecimal
2045number of one to eight digits.
6ea30487 2046
07d83abe
MV
2047@rnindex char?
2048@deffn {Scheme Procedure} char? x
2049@deffnx {C Function} scm_char_p (x)
2050Return @code{#t} iff @var{x} is a character, else @code{#f}.
2051@end deffn
2052
bb15a36c 2053Fundamentally, the character comparison operations below are
3f12aedb
MG
2054numeric comparisons of the character's code points.
2055
07d83abe
MV
2056@rnindex char=?
2057@deffn {Scheme Procedure} char=? x y
3f12aedb
MG
2058Return @code{#t} iff code point of @var{x} is equal to the code point
2059of @var{y}, else @code{#f}.
07d83abe
MV
2060@end deffn
2061
2062@rnindex char<?
2063@deffn {Scheme Procedure} char<? x y
3f12aedb
MG
2064Return @code{#t} iff the code point of @var{x} is less than the code
2065point of @var{y}, else @code{#f}.
07d83abe
MV
2066@end deffn
2067
2068@rnindex char<=?
2069@deffn {Scheme Procedure} char<=? x y
3f12aedb
MG
2070Return @code{#t} iff the code point of @var{x} is less than or equal
2071to the code point of @var{y}, else @code{#f}.
07d83abe
MV
2072@end deffn
2073
2074@rnindex char>?
2075@deffn {Scheme Procedure} char>? x y
3f12aedb
MG
2076Return @code{#t} iff the code point of @var{x} is greater than the
2077code point of @var{y}, else @code{#f}.
07d83abe
MV
2078@end deffn
2079
2080@rnindex char>=?
2081@deffn {Scheme Procedure} char>=? x y
3f12aedb
MG
2082Return @code{#t} iff the code point of @var{x} is greater than or
2083equal to the code point of @var{y}, else @code{#f}.
07d83abe
MV
2084@end deffn
2085
bb15a36c
MG
2086@cindex case folding
2087
2088Case-insensitive character comparisons use @emph{Unicode case
2089folding}. In case folding comparisons, if a character is lowercase
2090and has an uppercase form that can be expressed as a single character,
2091it is converted to uppercase before comparison. All other characters
2092undergo no conversion before the comparison occurs. This includes the
2093German sharp S (Eszett) which is not uppercased before conversion
2094because its uppercase form has two characters. Unicode case folding
2095is language independent: it uses rules that are generally true, but,
2096it cannot cover all cases for all languages.
3f12aedb 2097
07d83abe
MV
2098@rnindex char-ci=?
2099@deffn {Scheme Procedure} char-ci=? x y
3f12aedb
MG
2100Return @code{#t} iff the case-folded code point of @var{x} is the same
2101as the case-folded code point of @var{y}, else @code{#f}.
07d83abe
MV
2102@end deffn
2103
2104@rnindex char-ci<?
2105@deffn {Scheme Procedure} char-ci<? x y
3f12aedb
MG
2106Return @code{#t} iff the case-folded code point of @var{x} is less
2107than the case-folded code point of @var{y}, else @code{#f}.
07d83abe
MV
2108@end deffn
2109
2110@rnindex char-ci<=?
2111@deffn {Scheme Procedure} char-ci<=? x y
3f12aedb
MG
2112Return @code{#t} iff the case-folded code point of @var{x} is less
2113than or equal to the case-folded code point of @var{y}, else
2114@code{#f}.
07d83abe
MV
2115@end deffn
2116
2117@rnindex char-ci>?
2118@deffn {Scheme Procedure} char-ci>? x y
3f12aedb
MG
2119Return @code{#t} iff the case-folded code point of @var{x} is greater
2120than the case-folded code point of @var{y}, else @code{#f}.
07d83abe
MV
2121@end deffn
2122
2123@rnindex char-ci>=?
2124@deffn {Scheme Procedure} char-ci>=? x y
3f12aedb
MG
2125Return @code{#t} iff the case-folded code point of @var{x} is greater
2126than or equal to the case-folded code point of @var{y}, else
2127@code{#f}.
07d83abe
MV
2128@end deffn
2129
2130@rnindex char-alphabetic?
2131@deffn {Scheme Procedure} char-alphabetic? chr
2132@deffnx {C Function} scm_char_alphabetic_p (chr)
2133Return @code{#t} iff @var{chr} is alphabetic, else @code{#f}.
07d83abe
MV
2134@end deffn
2135
2136@rnindex char-numeric?
2137@deffn {Scheme Procedure} char-numeric? chr
2138@deffnx {C Function} scm_char_numeric_p (chr)
2139Return @code{#t} iff @var{chr} is numeric, else @code{#f}.
07d83abe
MV
2140@end deffn
2141
2142@rnindex char-whitespace?
2143@deffn {Scheme Procedure} char-whitespace? chr
2144@deffnx {C Function} scm_char_whitespace_p (chr)
2145Return @code{#t} iff @var{chr} is whitespace, else @code{#f}.
07d83abe
MV
2146@end deffn
2147
2148@rnindex char-upper-case?
2149@deffn {Scheme Procedure} char-upper-case? chr
2150@deffnx {C Function} scm_char_upper_case_p (chr)
2151Return @code{#t} iff @var{chr} is uppercase, else @code{#f}.
07d83abe
MV
2152@end deffn
2153
2154@rnindex char-lower-case?
2155@deffn {Scheme Procedure} char-lower-case? chr
2156@deffnx {C Function} scm_char_lower_case_p (chr)
2157Return @code{#t} iff @var{chr} is lowercase, else @code{#f}.
07d83abe
MV
2158@end deffn
2159
2160@deffn {Scheme Procedure} char-is-both? chr
2161@deffnx {C Function} scm_char_is_both_p (chr)
2162Return @code{#t} iff @var{chr} is either uppercase or lowercase, else
5676b4fa 2163@code{#f}.
07d83abe
MV
2164@end deffn
2165
0ca3a342
JG
2166@deffn {Scheme Procedure} char-general-category chr
2167@deffnx {C Function} scm_char_general_category (chr)
2168Return a symbol giving the two-letter name of the Unicode general
2169category assigned to @var{chr} or @code{#f} if no named category is
2170assigned. The following table provides a list of category names along
2171with their meanings.
2172
2173@multitable @columnfractions .1 .4 .1 .4
2174@item Lu
2175 @tab Uppercase letter
2176 @tab Pf
2177 @tab Final quote punctuation
2178@item Ll
2179 @tab Lowercase letter
2180 @tab Po
2181 @tab Other punctuation
2182@item Lt
2183 @tab Titlecase letter
2184 @tab Sm
2185 @tab Math symbol
2186@item Lm
2187 @tab Modifier letter
2188 @tab Sc
2189 @tab Currency symbol
2190@item Lo
2191 @tab Other letter
2192 @tab Sk
2193 @tab Modifier symbol
2194@item Mn
2195 @tab Non-spacing mark
2196 @tab So
2197 @tab Other symbol
2198@item Mc
2199 @tab Combining spacing mark
2200 @tab Zs
2201 @tab Space separator
2202@item Me
2203 @tab Enclosing mark
2204 @tab Zl
2205 @tab Line separator
2206@item Nd
2207 @tab Decimal digit number
2208 @tab Zp
2209 @tab Paragraph separator
2210@item Nl
2211 @tab Letter number
2212 @tab Cc
2213 @tab Control
2214@item No
2215 @tab Other number
2216 @tab Cf
2217 @tab Format
2218@item Pc
2219 @tab Connector punctuation
2220 @tab Cs
2221 @tab Surrogate
2222@item Pd
2223 @tab Dash punctuation
2224 @tab Co
2225 @tab Private use
2226@item Ps
2227 @tab Open punctuation
2228 @tab Cn
2229 @tab Unassigned
2230@item Pe
2231 @tab Close punctuation
2232 @tab
2233 @tab
2234@item Pi
2235 @tab Initial quote punctuation
2236 @tab
2237 @tab
2238@end multitable
2239@end deffn
2240
07d83abe
MV
2241@rnindex char->integer
2242@deffn {Scheme Procedure} char->integer chr
2243@deffnx {C Function} scm_char_to_integer (chr)
3f12aedb 2244Return the code point of @var{chr}.
07d83abe
MV
2245@end deffn
2246
2247@rnindex integer->char
2248@deffn {Scheme Procedure} integer->char n
2249@deffnx {C Function} scm_integer_to_char (n)
3f12aedb
MG
2250Return the character that has code point @var{n}. The integer @var{n}
2251must be a valid code point. Valid code points are in the ranges 0 to
2252@code{#xD7FF} inclusive or @code{#xE000} to @code{#x10FFFF} inclusive.
07d83abe
MV
2253@end deffn
2254
2255@rnindex char-upcase
2256@deffn {Scheme Procedure} char-upcase chr
2257@deffnx {C Function} scm_char_upcase (chr)
2258Return the uppercase character version of @var{chr}.
2259@end deffn
2260
2261@rnindex char-downcase
2262@deffn {Scheme Procedure} char-downcase chr
2263@deffnx {C Function} scm_char_downcase (chr)
2264Return the lowercase character version of @var{chr}.
2265@end deffn
2266
820f33aa
JG
2267@rnindex char-titlecase
2268@deffn {Scheme Procedure} char-titlecase chr
2269@deffnx {C Function} scm_char_titlecase (chr)
2270Return the titlecase character version of @var{chr} if one exists;
2271otherwise return the uppercase version.
2272
2273For most characters these will be the same, but the Unicode Standard
2274includes certain digraph compatibility characters, such as @code{U+01F3}
2275``dz'', for which the uppercase and titlecase characters are different
2276(@code{U+01F1} ``DZ'' and @code{U+01F2} ``Dz'' in this case,
2277respectively).
2278@end deffn
2279
a1dcb961
MG
2280@tindex scm_t_wchar
2281@deftypefn {C Function} scm_t_wchar scm_c_upcase (scm_t_wchar @var{c})
2282@deftypefnx {C Function} scm_t_wchar scm_c_downcase (scm_t_wchar @var{c})
2283@deftypefnx {C Function} scm_t_wchar scm_c_titlecase (scm_t_wchar @var{c})
2284
2285These C functions take an integer representation of a Unicode
2286codepoint and return the codepoint corresponding to its uppercase,
2287lowercase, and titlecase forms respectively. The type
2288@code{scm_t_wchar} is a signed, 32-bit integer.
2289@end deftypefn
2290
050ab45f
MV
2291@node Character Sets
2292@subsection Character Sets
07d83abe 2293
050ab45f
MV
2294The features described in this section correspond directly to SRFI-14.
2295
2296The data type @dfn{charset} implements sets of characters
2297(@pxref{Characters}). Because the internal representation of
2298character sets is not visible to the user, a lot of procedures for
2299handling them are provided.
2300
2301Character sets can be created, extended, tested for the membership of a
2302characters and be compared to other character sets.
2303
050ab45f
MV
2304@menu
2305* Character Set Predicates/Comparison::
2306* Iterating Over Character Sets:: Enumerate charset elements.
2307* Creating Character Sets:: Making new charsets.
2308* Querying Character Sets:: Test charsets for membership etc.
2309* Character-Set Algebra:: Calculating new charsets.
2310* Standard Character Sets:: Variables containing predefined charsets.
2311@end menu
2312
2313@node Character Set Predicates/Comparison
2314@subsubsection Character Set Predicates/Comparison
2315
2316Use these procedures for testing whether an object is a character set,
2317or whether several character sets are equal or subsets of each other.
2318@code{char-set-hash} can be used for calculating a hash value, maybe for
2319usage in fast lookup procedures.
2320
2321@deffn {Scheme Procedure} char-set? obj
2322@deffnx {C Function} scm_char_set_p (obj)
2323Return @code{#t} if @var{obj} is a character set, @code{#f}
2324otherwise.
2325@end deffn
2326
df0a1002 2327@deffn {Scheme Procedure} char-set= char_set @dots{}
050ab45f
MV
2328@deffnx {C Function} scm_char_set_eq (char_sets)
2329Return @code{#t} if all given character sets are equal.
2330@end deffn
2331
df0a1002 2332@deffn {Scheme Procedure} char-set<= char_set @dots{}
050ab45f 2333@deffnx {C Function} scm_char_set_leq (char_sets)
64de6db5
BT
2334Return @code{#t} if every character set @var{char_set}i is a subset
2335of character set @var{char_set}i+1.
050ab45f
MV
2336@end deffn
2337
2338@deffn {Scheme Procedure} char-set-hash cs [bound]
2339@deffnx {C Function} scm_char_set_hash (cs, bound)
2340Compute a hash value for the character set @var{cs}. If
2341@var{bound} is given and non-zero, it restricts the
df0a1002 2342returned value to the range 0 @dots{} @var{bound} - 1.
050ab45f
MV
2343@end deffn
2344
2345@c ===================================================================
2346
2347@node Iterating Over Character Sets
2348@subsubsection Iterating Over Character Sets
2349
2350Character set cursors are a means for iterating over the members of a
2351character sets. After creating a character set cursor with
2352@code{char-set-cursor}, a cursor can be dereferenced with
2353@code{char-set-ref}, advanced to the next member with
2354@code{char-set-cursor-next}. Whether a cursor has passed past the last
2355element of the set can be checked with @code{end-of-char-set?}.
2356
2357Additionally, mapping and (un-)folding procedures for character sets are
2358provided.
2359
2360@deffn {Scheme Procedure} char-set-cursor cs
2361@deffnx {C Function} scm_char_set_cursor (cs)
2362Return a cursor into the character set @var{cs}.
2363@end deffn
2364
2365@deffn {Scheme Procedure} char-set-ref cs cursor
2366@deffnx {C Function} scm_char_set_ref (cs, cursor)
2367Return the character at the current cursor position
2368@var{cursor} in the character set @var{cs}. It is an error to
2369pass a cursor for which @code{end-of-char-set?} returns true.
2370@end deffn
2371
2372@deffn {Scheme Procedure} char-set-cursor-next cs cursor
2373@deffnx {C Function} scm_char_set_cursor_next (cs, cursor)
2374Advance the character set cursor @var{cursor} to the next
2375character in the character set @var{cs}. It is an error if the
2376cursor given satisfies @code{end-of-char-set?}.
2377@end deffn
2378
2379@deffn {Scheme Procedure} end-of-char-set? cursor
2380@deffnx {C Function} scm_end_of_char_set_p (cursor)
2381Return @code{#t} if @var{cursor} has reached the end of a
2382character set, @code{#f} otherwise.
2383@end deffn
2384
2385@deffn {Scheme Procedure} char-set-fold kons knil cs
2386@deffnx {C Function} scm_char_set_fold (kons, knil, cs)
2387Fold the procedure @var{kons} over the character set @var{cs},
2388initializing it with @var{knil}.
2389@end deffn
2390
2391@deffn {Scheme Procedure} char-set-unfold p f g seed [base_cs]
2392@deffnx {C Function} scm_char_set_unfold (p, f, g, seed, base_cs)
2393This is a fundamental constructor for character sets.
2394@itemize @bullet
2395@item @var{g} is used to generate a series of ``seed'' values
2396from the initial seed: @var{seed}, (@var{g} @var{seed}),
2397(@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}), @dots{}
2398@item @var{p} tells us when to stop -- when it returns true
2399when applied to one of the seed values.
2400@item @var{f} maps each seed value to a character. These
2401characters are added to the base character set @var{base_cs} to
2402form the result; @var{base_cs} defaults to the empty set.
2403@end itemize
2404@end deffn
2405
2406@deffn {Scheme Procedure} char-set-unfold! p f g seed base_cs
2407@deffnx {C Function} scm_char_set_unfold_x (p, f, g, seed, base_cs)
2408This is a fundamental constructor for character sets.
2409@itemize @bullet
2410@item @var{g} is used to generate a series of ``seed'' values
2411from the initial seed: @var{seed}, (@var{g} @var{seed}),
2412(@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}), @dots{}
2413@item @var{p} tells us when to stop -- when it returns true
2414when applied to one of the seed values.
2415@item @var{f} maps each seed value to a character. These
2416characters are added to the base character set @var{base_cs} to
2417form the result; @var{base_cs} defaults to the empty set.
2418@end itemize
2419@end deffn
2420
2421@deffn {Scheme Procedure} char-set-for-each proc cs
2422@deffnx {C Function} scm_char_set_for_each (proc, cs)
2423Apply @var{proc} to every character in the character set
2424@var{cs}. The return value is not specified.
2425@end deffn
2426
2427@deffn {Scheme Procedure} char-set-map proc cs
2428@deffnx {C Function} scm_char_set_map (proc, cs)
2429Map the procedure @var{proc} over every character in @var{cs}.
2430@var{proc} must be a character -> character procedure.
2431@end deffn
2432
2433@c ===================================================================
2434
2435@node Creating Character Sets
2436@subsubsection Creating Character Sets
2437
2438New character sets are produced with these procedures.
2439
2440@deffn {Scheme Procedure} char-set-copy cs
2441@deffnx {C Function} scm_char_set_copy (cs)
2442Return a newly allocated character set containing all
2443characters in @var{cs}.
2444@end deffn
2445
df0a1002
BT
2446@deffn {Scheme Procedure} char-set chr @dots{}
2447@deffnx {C Function} scm_char_set (chrs)
050ab45f
MV
2448Return a character set containing all given characters.
2449@end deffn
2450
2451@deffn {Scheme Procedure} list->char-set list [base_cs]
2452@deffnx {C Function} scm_list_to_char_set (list, base_cs)
2453Convert the character list @var{list} to a character set. If
2454the character set @var{base_cs} is given, the character in this
2455set are also included in the result.
2456@end deffn
2457
2458@deffn {Scheme Procedure} list->char-set! list base_cs
2459@deffnx {C Function} scm_list_to_char_set_x (list, base_cs)
2460Convert the character list @var{list} to a character set. The
2461characters are added to @var{base_cs} and @var{base_cs} is
2462returned.
2463@end deffn
2464
2465@deffn {Scheme Procedure} string->char-set str [base_cs]
2466@deffnx {C Function} scm_string_to_char_set (str, base_cs)
2467Convert the string @var{str} to a character set. If the
2468character set @var{base_cs} is given, the characters in this
2469set are also included in the result.
2470@end deffn
2471
2472@deffn {Scheme Procedure} string->char-set! str base_cs
2473@deffnx {C Function} scm_string_to_char_set_x (str, base_cs)
2474Convert the string @var{str} to a character set. The
2475characters from the string are added to @var{base_cs}, and
2476@var{base_cs} is returned.
2477@end deffn
2478
2479@deffn {Scheme Procedure} char-set-filter pred cs [base_cs]
2480@deffnx {C Function} scm_char_set_filter (pred, cs, base_cs)
2481Return a character set containing every character from @var{cs}
2482so that it satisfies @var{pred}. If provided, the characters
2483from @var{base_cs} are added to the result.
2484@end deffn
2485
2486@deffn {Scheme Procedure} char-set-filter! pred cs base_cs
2487@deffnx {C Function} scm_char_set_filter_x (pred, cs, base_cs)
2488Return a character set containing every character from @var{cs}
2489so that it satisfies @var{pred}. The characters are added to
2490@var{base_cs} and @var{base_cs} is returned.
2491@end deffn
2492
2493@deffn {Scheme Procedure} ucs-range->char-set lower upper [error [base_cs]]
2494@deffnx {C Function} scm_ucs_range_to_char_set (lower, upper, error, base_cs)
2495Return a character set containing all characters whose
2496character codes lie in the half-open range
2497[@var{lower},@var{upper}).
2498
2499If @var{error} is a true value, an error is signalled if the
2500specified range contains characters which are not contained in
2501the implemented character range. If @var{error} is @code{#f},
be3eb25c 2502these characters are silently left out of the resulting
050ab45f
MV
2503character set.
2504
2505The characters in @var{base_cs} are added to the result, if
2506given.
2507@end deffn
2508
2509@deffn {Scheme Procedure} ucs-range->char-set! lower upper error base_cs
2510@deffnx {C Function} scm_ucs_range_to_char_set_x (lower, upper, error, base_cs)
2511Return a character set containing all characters whose
2512character codes lie in the half-open range
2513[@var{lower},@var{upper}).
2514
2515If @var{error} is a true value, an error is signalled if the
2516specified range contains characters which are not contained in
2517the implemented character range. If @var{error} is @code{#f},
be3eb25c 2518these characters are silently left out of the resulting
050ab45f
MV
2519character set.
2520
2521The characters are added to @var{base_cs} and @var{base_cs} is
2522returned.
2523@end deffn
2524
2525@deffn {Scheme Procedure} ->char-set x
2526@deffnx {C Function} scm_to_char_set (x)
be3eb25c
MG
2527Coerces x into a char-set. @var{x} may be a string, character or
2528char-set. A string is converted to the set of its constituent
2529characters; a character is converted to a singleton set; a char-set is
2530returned as-is.
050ab45f
MV
2531@end deffn
2532
2533@c ===================================================================
2534
2535@node Querying Character Sets
2536@subsubsection Querying Character Sets
2537
2538Access the elements and other information of a character set with these
2539procedures.
2540
be3eb25c
MG
2541@deffn {Scheme Procedure} %char-set-dump cs
2542Returns an association list containing debugging information
2543for @var{cs}. The association list has the following entries.
2544@table @code
2545@item char-set
2546The char-set itself
2547@item len
2548The number of groups of contiguous code points the char-set
2549contains
2550@item ranges
2551A list of lists where each sublist is a range of code points
2552and their associated characters
2553@end table
2554The return value of this function cannot be relied upon to be
2555consistent between versions of Guile and should not be used in code.
2556@end deffn
2557
050ab45f
MV
2558@deffn {Scheme Procedure} char-set-size cs
2559@deffnx {C Function} scm_char_set_size (cs)
2560Return the number of elements in character set @var{cs}.
2561@end deffn
2562
2563@deffn {Scheme Procedure} char-set-count pred cs
2564@deffnx {C Function} scm_char_set_count (pred, cs)
2565Return the number of the elements int the character set
2566@var{cs} which satisfy the predicate @var{pred}.
2567@end deffn
2568
2569@deffn {Scheme Procedure} char-set->list cs
2570@deffnx {C Function} scm_char_set_to_list (cs)
2571Return a list containing the elements of the character set
2572@var{cs}.
2573@end deffn
2574
2575@deffn {Scheme Procedure} char-set->string cs
2576@deffnx {C Function} scm_char_set_to_string (cs)
2577Return a string containing the elements of the character set
2578@var{cs}. The order in which the characters are placed in the
2579string is not defined.
2580@end deffn
2581
2582@deffn {Scheme Procedure} char-set-contains? cs ch
2583@deffnx {C Function} scm_char_set_contains_p (cs, ch)
2584Return @code{#t} iff the character @var{ch} is contained in the
2585character set @var{cs}.
2586@end deffn
2587
2588@deffn {Scheme Procedure} char-set-every pred cs
2589@deffnx {C Function} scm_char_set_every (pred, cs)
2590Return a true value if every character in the character set
2591@var{cs} satisfies the predicate @var{pred}.
2592@end deffn
2593
2594@deffn {Scheme Procedure} char-set-any pred cs
2595@deffnx {C Function} scm_char_set_any (pred, cs)
2596Return a true value if any character in the character set
2597@var{cs} satisfies the predicate @var{pred}.
2598@end deffn
2599
2600@c ===================================================================
2601
2602@node Character-Set Algebra
2603@subsubsection Character-Set Algebra
2604
2605Character sets can be manipulated with the common set algebra operation,
2606such as union, complement, intersection etc. All of these procedures
2607provide side-effecting variants, which modify their character set
2608argument(s).
2609
df0a1002
BT
2610@deffn {Scheme Procedure} char-set-adjoin cs chr @dots{}
2611@deffnx {C Function} scm_char_set_adjoin (cs, chrs)
050ab45f
MV
2612Add all character arguments to the first argument, which must
2613be a character set.
2614@end deffn
2615
df0a1002
BT
2616@deffn {Scheme Procedure} char-set-delete cs chr @dots{}
2617@deffnx {C Function} scm_char_set_delete (cs, chrs)
050ab45f
MV
2618Delete all character arguments from the first argument, which
2619must be a character set.
2620@end deffn
2621
df0a1002
BT
2622@deffn {Scheme Procedure} char-set-adjoin! cs chr @dots{}
2623@deffnx {C Function} scm_char_set_adjoin_x (cs, chrs)
050ab45f
MV
2624Add all character arguments to the first argument, which must
2625be a character set.
2626@end deffn
2627
df0a1002
BT
2628@deffn {Scheme Procedure} char-set-delete! cs chr @dots{}
2629@deffnx {C Function} scm_char_set_delete_x (cs, chrs)
050ab45f
MV
2630Delete all character arguments from the first argument, which
2631must be a character set.
2632@end deffn
2633
2634@deffn {Scheme Procedure} char-set-complement cs
2635@deffnx {C Function} scm_char_set_complement (cs)
2636Return the complement of the character set @var{cs}.
2637@end deffn
2638
be3eb25c
MG
2639Note that the complement of a character set is likely to contain many
2640reserved code points (code points that are not associated with
2641characters). It may be helpful to modify the output of
2642@code{char-set-complement} by computing its intersection with the set
2643of designated code points, @code{char-set:designated}.
2644
df0a1002
BT
2645@deffn {Scheme Procedure} char-set-union cs @dots{}
2646@deffnx {C Function} scm_char_set_union (char_sets)
050ab45f
MV
2647Return the union of all argument character sets.
2648@end deffn
2649
df0a1002
BT
2650@deffn {Scheme Procedure} char-set-intersection cs @dots{}
2651@deffnx {C Function} scm_char_set_intersection (char_sets)
050ab45f
MV
2652Return the intersection of all argument character sets.
2653@end deffn
2654
df0a1002
BT
2655@deffn {Scheme Procedure} char-set-difference cs1 cs @dots{}
2656@deffnx {C Function} scm_char_set_difference (cs1, char_sets)
050ab45f
MV
2657Return the difference of all argument character sets.
2658@end deffn
2659
df0a1002
BT
2660@deffn {Scheme Procedure} char-set-xor cs @dots{}
2661@deffnx {C Function} scm_char_set_xor (char_sets)
050ab45f
MV
2662Return the exclusive-or of all argument character sets.
2663@end deffn
2664
df0a1002
BT
2665@deffn {Scheme Procedure} char-set-diff+intersection cs1 cs @dots{}
2666@deffnx {C Function} scm_char_set_diff_plus_intersection (cs1, char_sets)
050ab45f
MV
2667Return the difference and the intersection of all argument
2668character sets.
2669@end deffn
2670
2671@deffn {Scheme Procedure} char-set-complement! cs
2672@deffnx {C Function} scm_char_set_complement_x (cs)
2673Return the complement of the character set @var{cs}.
2674@end deffn
2675
df0a1002
BT
2676@deffn {Scheme Procedure} char-set-union! cs1 cs @dots{}
2677@deffnx {C Function} scm_char_set_union_x (cs1, char_sets)
050ab45f
MV
2678Return the union of all argument character sets.
2679@end deffn
2680
df0a1002
BT
2681@deffn {Scheme Procedure} char-set-intersection! cs1 cs @dots{}
2682@deffnx {C Function} scm_char_set_intersection_x (cs1, char_sets)
050ab45f
MV
2683Return the intersection of all argument character sets.
2684@end deffn
2685
df0a1002
BT
2686@deffn {Scheme Procedure} char-set-difference! cs1 cs @dots{}
2687@deffnx {C Function} scm_char_set_difference_x (cs1, char_sets)
050ab45f
MV
2688Return the difference of all argument character sets.
2689@end deffn
2690
df0a1002
BT
2691@deffn {Scheme Procedure} char-set-xor! cs1 cs @dots{}
2692@deffnx {C Function} scm_char_set_xor_x (cs1, char_sets)
050ab45f
MV
2693Return the exclusive-or of all argument character sets.
2694@end deffn
2695
df0a1002
BT
2696@deffn {Scheme Procedure} char-set-diff+intersection! cs1 cs2 cs @dots{}
2697@deffnx {C Function} scm_char_set_diff_plus_intersection_x (cs1, cs2, char_sets)
050ab45f
MV
2698Return the difference and the intersection of all argument
2699character sets.
2700@end deffn
2701
2702@c ===================================================================
2703
2704@node Standard Character Sets
2705@subsubsection Standard Character Sets
2706
2707In order to make the use of the character set data type and procedures
2708useful, several predefined character set variables exist.
2709
49dec04b
LC
2710@cindex codeset
2711@cindex charset
2712@cindex locale
2713
be3eb25c
MG
2714These character sets are locale independent and are not recomputed
2715upon a @code{setlocale} call. They contain characters from the whole
2716range of Unicode code points. For instance, @code{char-set:letter}
bf8d8454 2717contains about 100,000 characters.
49dec04b 2718
c9dc8c6c
MV
2719@defvr {Scheme Variable} char-set:lower-case
2720@defvrx {C Variable} scm_char_set_lower_case
050ab45f 2721All lower-case characters.
c9dc8c6c 2722@end defvr
050ab45f 2723
c9dc8c6c
MV
2724@defvr {Scheme Variable} char-set:upper-case
2725@defvrx {C Variable} scm_char_set_upper_case
050ab45f 2726All upper-case characters.
c9dc8c6c 2727@end defvr
050ab45f 2728
c9dc8c6c
MV
2729@defvr {Scheme Variable} char-set:title-case
2730@defvrx {C Variable} scm_char_set_title_case
be3eb25c
MG
2731All single characters that function as if they were an upper-case
2732letter followed by a lower-case letter.
c9dc8c6c 2733@end defvr
050ab45f 2734
c9dc8c6c
MV
2735@defvr {Scheme Variable} char-set:letter
2736@defvrx {C Variable} scm_char_set_letter
be3eb25c
MG
2737All letters. This includes @code{char-set:lower-case},
2738@code{char-set:upper-case}, @code{char-set:title-case}, and many
2739letters that have no case at all. For example, Chinese and Japanese
2740characters typically have no concept of case.
c9dc8c6c 2741@end defvr
050ab45f 2742
c9dc8c6c
MV
2743@defvr {Scheme Variable} char-set:digit
2744@defvrx {C Variable} scm_char_set_digit
050ab45f 2745All digits.
c9dc8c6c 2746@end defvr
050ab45f 2747
c9dc8c6c
MV
2748@defvr {Scheme Variable} char-set:letter+digit
2749@defvrx {C Variable} scm_char_set_letter_and_digit
050ab45f 2750The union of @code{char-set:letter} and @code{char-set:digit}.
c9dc8c6c 2751@end defvr
050ab45f 2752
c9dc8c6c
MV
2753@defvr {Scheme Variable} char-set:graphic
2754@defvrx {C Variable} scm_char_set_graphic
050ab45f 2755All characters which would put ink on the paper.
c9dc8c6c 2756@end defvr
050ab45f 2757
c9dc8c6c
MV
2758@defvr {Scheme Variable} char-set:printing
2759@defvrx {C Variable} scm_char_set_printing
050ab45f 2760The union of @code{char-set:graphic} and @code{char-set:whitespace}.
c9dc8c6c 2761@end defvr
050ab45f 2762
c9dc8c6c
MV
2763@defvr {Scheme Variable} char-set:whitespace
2764@defvrx {C Variable} scm_char_set_whitespace
050ab45f 2765All whitespace characters.
c9dc8c6c 2766@end defvr
050ab45f 2767
c9dc8c6c
MV
2768@defvr {Scheme Variable} char-set:blank
2769@defvrx {C Variable} scm_char_set_blank
be3eb25c
MG
2770All horizontal whitespace characters, which notably includes
2771@code{#\space} and @code{#\tab}.
c9dc8c6c 2772@end defvr
050ab45f 2773
c9dc8c6c
MV
2774@defvr {Scheme Variable} char-set:iso-control
2775@defvrx {C Variable} scm_char_set_iso_control
be3eb25c
MG
2776The ISO control characters are the C0 control characters (U+0000 to
2777U+001F), delete (U+007F), and the C1 control characters (U+0080 to
2778U+009F).
c9dc8c6c 2779@end defvr
050ab45f 2780
c9dc8c6c
MV
2781@defvr {Scheme Variable} char-set:punctuation
2782@defvrx {C Variable} scm_char_set_punctuation
be3eb25c
MG
2783All punctuation characters, such as the characters
2784@code{!"#%&'()*,-./:;?@@[\\]_@{@}}
c9dc8c6c 2785@end defvr
050ab45f 2786
c9dc8c6c
MV
2787@defvr {Scheme Variable} char-set:symbol
2788@defvrx {C Variable} scm_char_set_symbol
be3eb25c 2789All symbol characters, such as the characters @code{$+<=>^`|~}.
c9dc8c6c 2790@end defvr
050ab45f 2791
c9dc8c6c
MV
2792@defvr {Scheme Variable} char-set:hex-digit
2793@defvrx {C Variable} scm_char_set_hex_digit
050ab45f 2794The hexadecimal digits @code{0123456789abcdefABCDEF}.
c9dc8c6c 2795@end defvr
050ab45f 2796
c9dc8c6c
MV
2797@defvr {Scheme Variable} char-set:ascii
2798@defvrx {C Variable} scm_char_set_ascii
050ab45f 2799All ASCII characters.
c9dc8c6c 2800@end defvr
050ab45f 2801
c9dc8c6c
MV
2802@defvr {Scheme Variable} char-set:empty
2803@defvrx {C Variable} scm_char_set_empty
050ab45f 2804The empty character set.
c9dc8c6c 2805@end defvr
050ab45f 2806
be3eb25c
MG
2807@defvr {Scheme Variable} char-set:designated
2808@defvrx {C Variable} scm_char_set_designated
2809This character set contains all designated code points. This includes
2810all the code points to which Unicode has assigned a character or other
2811meaning.
2812@end defvr
2813
c9dc8c6c
MV
2814@defvr {Scheme Variable} char-set:full
2815@defvrx {C Variable} scm_char_set_full
be3eb25c
MG
2816This character set contains all possible code points. This includes
2817both designated and reserved code points.
c9dc8c6c 2818@end defvr
07d83abe
MV
2819
2820@node Strings
2821@subsection Strings
2822@tpindex Strings
2823
2824Strings are fixed-length sequences of characters. They can be created
2825by calling constructor procedures, but they can also literally get
2826entered at the @acronym{REPL} or in Scheme source files.
2827
2828@c Guile provides a rich set of string processing procedures, because text
2829@c handling is very important when Guile is used as a scripting language.
2830
2831Strings always carry the information about how many characters they are
2832composed of with them, so there is no special end-of-string character,
2833like in C. That means that Scheme strings can contain any character,
c48c62d0
MV
2834even the @samp{#\nul} character @samp{\0}.
2835
2836To use strings efficiently, you need to know a bit about how Guile
2837implements them. In Guile, a string consists of two parts, a head and
2838the actual memory where the characters are stored. When a string (or
2839a substring of it) is copied, only a new head gets created, the memory
2840is usually not copied. The two heads start out pointing to the same
2841memory.
2842
2843When one of these two strings is modified, as with @code{string-set!},
2844their common memory does get copied so that each string has its own
be3eb25c 2845memory and modifying one does not accidentally modify the other as well.
c48c62d0
MV
2846Thus, Guile's strings are `copy on write'; the actual copying of their
2847memory is delayed until one string is written to.
2848
2849This implementation makes functions like @code{substring} very
2850efficient in the common case that no modifications are done to the
2851involved strings.
2852
2853If you do know that your strings are getting modified right away, you
2854can use @code{substring/copy} instead of @code{substring}. This
2855function performs the copy immediately at the time of creation. This
2856is more efficient, especially in a multi-threaded program. Also,
2857@code{substring/copy} can avoid the problem that a short substring
2858holds on to the memory of a very large original string that could
2859otherwise be recycled.
2860
2861If you want to avoid the copy altogether, so that modifications of one
2862string show up in the other, you can use @code{substring/shared}. The
2863strings created by this procedure are called @dfn{mutation sharing
2864substrings} since the substring and the original string share
2865modifications to each other.
07d83abe 2866
05256760
MV
2867If you want to prevent modifications, use @code{substring/read-only}.
2868
c9dc8c6c
MV
2869Guile provides all procedures of SRFI-13 and a few more.
2870
07d83abe 2871@menu
5676b4fa
MV
2872* String Syntax:: Read syntax for strings.
2873* String Predicates:: Testing strings for certain properties.
2874* String Constructors:: Creating new string objects.
2875* List/String Conversion:: Converting from/to lists of characters.
2876* String Selection:: Select portions from strings.
2877* String Modification:: Modify parts or whole strings.
2878* String Comparison:: Lexicographic ordering predicates.
2879* String Searching:: Searching in strings.
2880* Alphabetic Case Mapping:: Convert the alphabetic case of strings.
2881* Reversing and Appending Strings:: Appending strings to form a new string.
2882* Mapping Folding and Unfolding:: Iterating over strings.
2883* Miscellaneous String Operations:: Replicating, insertion, parsing, ...
67af975c 2884* Conversion to/from C::
5b6b22e8 2885* String Internals:: The storage strategy for strings.
07d83abe
MV
2886@end menu
2887
2888@node String Syntax
2889@subsubsection String Read Syntax
2890
2891@c In the following @code is used to get a good font in TeX etc, but
2892@c is omitted for Info format, so as not to risk any confusion over
2893@c whether surrounding ` ' quotes are part of the escape or are
2894@c special in a string (they're not).
2895
2896The read syntax for strings is an arbitrarily long sequence of
c48c62d0 2897characters enclosed in double quotes (@nicode{"}).
07d83abe 2898
67af975c
MG
2899Backslash is an escape character and can be used to insert the following
2900special characters. @nicode{\"} and @nicode{\\} are R5RS standard, the
2901next seven are R6RS standard --- notice they follow C syntax --- and the
2902remaining four are Guile extensions.
07d83abe
MV
2903
2904@table @asis
2905@item @nicode{\\}
2906Backslash character.
2907
2908@item @nicode{\"}
2909Double quote character (an unescaped @nicode{"} is otherwise the end
2910of the string).
2911
07d83abe
MV
2912@item @nicode{\a}
2913Bell character (ASCII 7).
2914
2915@item @nicode{\f}
2916Formfeed character (ASCII 12).
2917
2918@item @nicode{\n}
2919Newline character (ASCII 10).
2920
2921@item @nicode{\r}
2922Carriage return character (ASCII 13).
2923
2924@item @nicode{\t}
2925Tab character (ASCII 9).
2926
2927@item @nicode{\v}
2928Vertical tab character (ASCII 11).
2929
67a4a16d
MG
2930@item @nicode{\b}
2931Backspace character (ASCII 8).
2932
67af975c
MG
2933@item @nicode{\0}
2934NUL character (ASCII 0).
2935
c869f0c1
AW
2936@item @nicode{\} followed by newline (ASCII 10)
2937Nothing. This way if @nicode{\} is the last character in a line, the
2938string will continue with the first character from the next line,
2939without a line break.
2940
2941If the @code{hungry-eol-escapes} reader option is enabled, which is not
2942the case by default, leading whitespace on the next line is discarded.
2943
2944@lisp
2945"foo\
2946 bar"
2947@result{} "foo bar"
2948(read-enable 'hungry-eol-escapes)
2949"foo\
2950 bar"
2951@result{} "foobar"
2952@end lisp
07d83abe
MV
2953@item @nicode{\xHH}
2954Character code given by two hexadecimal digits. For example
2955@nicode{\x7f} for an ASCII DEL (127).
28cc8dac
MG
2956
2957@item @nicode{\uHHHH}
2958Character code given by four hexadecimal digits. For example
2959@nicode{\u0100} for a capital A with macron (U+0100).
2960
2961@item @nicode{\UHHHHHH}
2962Character code given by six hexadecimal digits. For example
2963@nicode{\U010402}.
07d83abe
MV
2964@end table
2965
2966@noindent
2967The following are examples of string literals:
2968
2969@lisp
2970"foo"
2971"bar plonk"
2972"Hello World"
2973"\"Hi\", he said."
2974@end lisp
2975
6ea30487
MG
2976The three escape sequences @code{\xHH}, @code{\uHHHH} and @code{\UHHHHHH} were
2977chosen to not break compatibility with code written for previous versions of
2978Guile. The R6RS specification suggests a different, incompatible syntax for hex
2979escapes: @code{\xHHHH;} -- a character code followed by one to eight hexadecimal
2980digits terminated with a semicolon. If this escape format is desired instead,
2981it can be enabled with the reader option @code{r6rs-hex-escapes}.
2982
2983@lisp
2984(read-enable 'r6rs-hex-escapes)
2985@end lisp
2986
1518f649 2987For more on reader options, @xref{Scheme Read}.
07d83abe
MV
2988
2989@node String Predicates
2990@subsubsection String Predicates
2991
2992The following procedures can be used to check whether a given string
2993fulfills some specified property.
2994
2995@rnindex string?
2996@deffn {Scheme Procedure} string? obj
2997@deffnx {C Function} scm_string_p (obj)
2998Return @code{#t} if @var{obj} is a string, else @code{#f}.
2999@end deffn
3000
91210d62
MV
3001@deftypefn {C Function} int scm_is_string (SCM obj)
3002Returns @code{1} if @var{obj} is a string, @code{0} otherwise.
3003@end deftypefn
3004
07d83abe
MV
3005@deffn {Scheme Procedure} string-null? str
3006@deffnx {C Function} scm_string_null_p (str)
3007Return @code{#t} if @var{str}'s length is zero, and
3008@code{#f} otherwise.
3009@lisp
3010(string-null? "") @result{} #t
3011y @result{} "foo"
3012(string-null? y) @result{} #f
3013@end lisp
3014@end deffn
3015
5676b4fa
MV
3016@deffn {Scheme Procedure} string-any char_pred s [start [end]]
3017@deffnx {C Function} scm_string_any (char_pred, s, start, end)
c100a12c 3018Check if @var{char_pred} is true for any character in string @var{s}.
5676b4fa 3019
c100a12c
KR
3020@var{char_pred} can be a character to check for any equal to that, or
3021a character set (@pxref{Character Sets}) to check for any in that set,
3022or a predicate procedure to call.
5676b4fa 3023
c100a12c
KR
3024For a procedure, calls @code{(@var{char_pred} c)} are made
3025successively on the characters from @var{start} to @var{end}. If
3026@var{char_pred} returns true (ie.@: non-@code{#f}), @code{string-any}
3027stops and that return value is the return from @code{string-any}. The
3028call on the last character (ie.@: at @math{@var{end}-1}), if that
3029point is reached, is a tail call.
3030
3031If there are no characters in @var{s} (ie.@: @var{start} equals
3032@var{end}) then the return is @code{#f}.
5676b4fa
MV
3033@end deffn
3034
3035@deffn {Scheme Procedure} string-every char_pred s [start [end]]
3036@deffnx {C Function} scm_string_every (char_pred, s, start, end)
c100a12c
KR
3037Check if @var{char_pred} is true for every character in string
3038@var{s}.
5676b4fa 3039
c100a12c
KR
3040@var{char_pred} can be a character to check for every character equal
3041to that, or a character set (@pxref{Character Sets}) to check for
3042every character being in that set, or a predicate procedure to call.
3043
3044For a procedure, calls @code{(@var{char_pred} c)} are made
3045successively on the characters from @var{start} to @var{end}. If
3046@var{char_pred} returns @code{#f}, @code{string-every} stops and
3047returns @code{#f}. The call on the last character (ie.@: at
3048@math{@var{end}-1}), if that point is reached, is a tail call and the
3049return from that call is the return from @code{string-every}.
5676b4fa
MV
3050
3051If there are no characters in @var{s} (ie.@: @var{start} equals
3052@var{end}) then the return is @code{#t}.
5676b4fa
MV
3053@end deffn
3054
07d83abe
MV
3055@node String Constructors
3056@subsubsection String Constructors
3057
3058The string constructor procedures create new string objects, possibly
c48c62d0
MV
3059initializing them with some specified character data. See also
3060@xref{String Selection}, for ways to create strings from existing
3061strings.
07d83abe
MV
3062
3063@c FIXME::martin: list->string belongs into `List/String Conversion'
3064
bba26c32 3065@deffn {Scheme Procedure} string char@dots{}
07d83abe 3066@rnindex string
bba26c32
KR
3067Return a newly allocated string made from the given character
3068arguments.
3069
3070@example
3071(string #\x #\y #\z) @result{} "xyz"
3072(string) @result{} ""
3073@end example
3074@end deffn
3075
3076@deffn {Scheme Procedure} list->string lst
3077@deffnx {C Function} scm_string (lst)
07d83abe 3078@rnindex list->string
bba26c32
KR
3079Return a newly allocated string made from a list of characters.
3080
3081@example
3082(list->string '(#\a #\b #\c)) @result{} "abc"
3083@end example
3084@end deffn
3085
3086@deffn {Scheme Procedure} reverse-list->string lst
3087@deffnx {C Function} scm_reverse_list_to_string (lst)
3088Return a newly allocated string made from a list of characters, in
3089reverse order.
3090
3091@example
3092(reverse-list->string '(#\a #\B #\c)) @result{} "cBa"
3093@end example
07d83abe
MV
3094@end deffn
3095
3096@rnindex make-string
3097@deffn {Scheme Procedure} make-string k [chr]
3098@deffnx {C Function} scm_make_string (k, chr)
3099Return a newly allocated string of
3100length @var{k}. If @var{chr} is given, then all elements of
3101the string are initialized to @var{chr}, otherwise the contents
64de6db5 3102of the string are unspecified.
07d83abe
MV
3103@end deffn
3104
c48c62d0
MV
3105@deftypefn {C Function} SCM scm_c_make_string (size_t len, SCM chr)
3106Like @code{scm_make_string}, but expects the length as a
3107@code{size_t}.
3108@end deftypefn
3109
5676b4fa
MV
3110@deffn {Scheme Procedure} string-tabulate proc len
3111@deffnx {C Function} scm_string_tabulate (proc, len)
3112@var{proc} is an integer->char procedure. Construct a string
3113of size @var{len} by applying @var{proc} to each index to
3114produce the corresponding string element. The order in which
3115@var{proc} is applied to the indices is not specified.
3116@end deffn
3117
5676b4fa
MV
3118@deffn {Scheme Procedure} string-join ls [delimiter [grammar]]
3119@deffnx {C Function} scm_string_join (ls, delimiter, grammar)
3120Append the string in the string list @var{ls}, using the string
64de6db5 3121@var{delimiter} as a delimiter between the elements of @var{ls}.
5676b4fa
MV
3122@var{grammar} is a symbol which specifies how the delimiter is
3123placed between the strings, and defaults to the symbol
3124@code{infix}.
3125
3126@table @code
3127@item infix
3128Insert the separator between list elements. An empty string
3129will produce an empty list.
3130@item string-infix
3131Like @code{infix}, but will raise an error if given the empty
3132list.
3133@item suffix
3134Insert the separator after every list element.
3135@item prefix
3136Insert the separator before each list element.
3137@end table
3138@end deffn
3139
07d83abe
MV
3140@node List/String Conversion
3141@subsubsection List/String conversion
3142
3143When processing strings, it is often convenient to first convert them
3144into a list representation by using the procedure @code{string->list},
3145work with the resulting list, and then convert it back into a string.
3146These procedures are useful for similar tasks.
3147
3148@rnindex string->list
5676b4fa
MV
3149@deffn {Scheme Procedure} string->list str [start [end]]
3150@deffnx {C Function} scm_substring_to_list (str, start, end)
07d83abe 3151@deffnx {C Function} scm_string_to_list (str)
5676b4fa 3152Convert the string @var{str} into a list of characters.
07d83abe
MV
3153@end deffn
3154
3155@deffn {Scheme Procedure} string-split str chr
3156@deffnx {C Function} scm_string_split (str, chr)
ecb87335 3157Split the string @var{str} into a list of substrings delimited
07d83abe
MV
3158by appearances of the character @var{chr}. Note that an empty substring
3159between separator characters will result in an empty string in the
3160result list.
3161
3162@lisp
3163(string-split "root:x:0:0:root:/root:/bin/bash" #\:)
3164@result{}
3165("root" "x" "0" "0" "root" "/root" "/bin/bash")
3166
3167(string-split "::" #\:)
3168@result{}
3169("" "" "")
3170
3171(string-split "" #\:)
3172@result{}
3173("")
3174@end lisp
3175@end deffn
3176
3177
3178@node String Selection
3179@subsubsection String Selection
3180
3181Portions of strings can be extracted by these procedures.
3182@code{string-ref} delivers individual characters whereas
3183@code{substring} can be used to extract substrings from longer strings.
3184
3185@rnindex string-length
3186@deffn {Scheme Procedure} string-length string
3187@deffnx {C Function} scm_string_length (string)
3188Return the number of characters in @var{string}.
3189@end deffn
3190
c48c62d0
MV
3191@deftypefn {C Function} size_t scm_c_string_length (SCM str)
3192Return the number of characters in @var{str} as a @code{size_t}.
3193@end deftypefn
3194
07d83abe
MV
3195@rnindex string-ref
3196@deffn {Scheme Procedure} string-ref str k
3197@deffnx {C Function} scm_string_ref (str, k)
3198Return character @var{k} of @var{str} using zero-origin
3199indexing. @var{k} must be a valid index of @var{str}.
3200@end deffn
3201
c48c62d0
MV
3202@deftypefn {C Function} SCM scm_c_string_ref (SCM str, size_t k)
3203Return character @var{k} of @var{str} using zero-origin
3204indexing. @var{k} must be a valid index of @var{str}.
3205@end deftypefn
3206
07d83abe 3207@rnindex string-copy
5676b4fa
MV
3208@deffn {Scheme Procedure} string-copy str [start [end]]
3209@deffnx {C Function} scm_substring_copy (str, start, end)
07d83abe 3210@deffnx {C Function} scm_string_copy (str)
5676b4fa 3211Return a copy of the given string @var{str}.
c48c62d0
MV
3212
3213The returned string shares storage with @var{str} initially, but it is
3214copied as soon as one of the two strings is modified.
07d83abe
MV
3215@end deffn
3216
3217@rnindex substring
3218@deffn {Scheme Procedure} substring str start [end]
3219@deffnx {C Function} scm_substring (str, start, end)
c48c62d0 3220Return a new string formed from the characters
07d83abe
MV
3221of @var{str} beginning with index @var{start} (inclusive) and
3222ending with index @var{end} (exclusive).
3223@var{str} must be a string, @var{start} and @var{end} must be
3224exact integers satisfying:
3225
32260 <= @var{start} <= @var{end} <= @code{(string-length @var{str})}.
c48c62d0
MV
3227
3228The returned string shares storage with @var{str} initially, but it is
3229copied as soon as one of the two strings is modified.
3230@end deffn
3231
3232@deffn {Scheme Procedure} substring/shared str start [end]
3233@deffnx {C Function} scm_substring_shared (str, start, end)
3234Like @code{substring}, but the strings continue to share their storage
3235even if they are modified. Thus, modifications to @var{str} show up
3236in the new string, and vice versa.
3237@end deffn
3238
3239@deffn {Scheme Procedure} substring/copy str start [end]
3240@deffnx {C Function} scm_substring_copy (str, start, end)
3241Like @code{substring}, but the storage for the new string is copied
3242immediately.
07d83abe
MV
3243@end deffn
3244
05256760
MV
3245@deffn {Scheme Procedure} substring/read-only str start [end]
3246@deffnx {C Function} scm_substring_read_only (str, start, end)
3247Like @code{substring}, but the resulting string can not be modified.
3248@end deffn
3249
c48c62d0
MV
3250@deftypefn {C Function} SCM scm_c_substring (SCM str, size_t start, size_t end)
3251@deftypefnx {C Function} SCM scm_c_substring_shared (SCM str, size_t start, size_t end)
3252@deftypefnx {C Function} SCM scm_c_substring_copy (SCM str, size_t start, size_t end)
05256760 3253@deftypefnx {C Function} SCM scm_c_substring_read_only (SCM str, size_t start, size_t end)
c48c62d0
MV
3254Like @code{scm_substring}, etc. but the bounds are given as a @code{size_t}.
3255@end deftypefn
3256
5676b4fa
MV
3257@deffn {Scheme Procedure} string-take s n
3258@deffnx {C Function} scm_string_take (s, n)
3259Return the @var{n} first characters of @var{s}.
3260@end deffn
3261
3262@deffn {Scheme Procedure} string-drop s n
3263@deffnx {C Function} scm_string_drop (s, n)
3264Return all but the first @var{n} characters of @var{s}.
3265@end deffn
3266
3267@deffn {Scheme Procedure} string-take-right s n
3268@deffnx {C Function} scm_string_take_right (s, n)
3269Return the @var{n} last characters of @var{s}.
3270@end deffn
3271
3272@deffn {Scheme Procedure} string-drop-right s n
3273@deffnx {C Function} scm_string_drop_right (s, n)
3274Return all but the last @var{n} characters of @var{s}.
3275@end deffn
3276
3277@deffn {Scheme Procedure} string-pad s len [chr [start [end]]]
6337e7fb 3278@deffnx {Scheme Procedure} string-pad-right s len [chr [start [end]]]
5676b4fa 3279@deffnx {C Function} scm_string_pad (s, len, chr, start, end)
5676b4fa 3280@deffnx {C Function} scm_string_pad_right (s, len, chr, start, end)
6337e7fb 3281Take characters @var{start} to @var{end} from the string @var{s} and
64de6db5 3282either pad with @var{chr} or truncate them to give @var{len}
6337e7fb
KR
3283characters.
3284
3285@code{string-pad} pads or truncates on the left, so for example
3286
3287@example
3288(string-pad "x" 3) @result{} " x"
3289(string-pad "abcde" 3) @result{} "cde"
3290@end example
3291
3292@code{string-pad-right} pads or truncates on the right, so for example
3293
3294@example
3295(string-pad-right "x" 3) @result{} "x "
3296(string-pad-right "abcde" 3) @result{} "abc"
3297@end example
5676b4fa
MV
3298@end deffn
3299
3300@deffn {Scheme Procedure} string-trim s [char_pred [start [end]]]
dc297bb7
KR
3301@deffnx {Scheme Procedure} string-trim-right s [char_pred [start [end]]]
3302@deffnx {Scheme Procedure} string-trim-both s [char_pred [start [end]]]
5676b4fa 3303@deffnx {C Function} scm_string_trim (s, char_pred, start, end)
5676b4fa 3304@deffnx {C Function} scm_string_trim_right (s, char_pred, start, end)
5676b4fa 3305@deffnx {C Function} scm_string_trim_both (s, char_pred, start, end)
be3eb25c 3306Trim occurrences of @var{char_pred} from the ends of @var{s}.
5676b4fa 3307
dc297bb7
KR
3308@code{string-trim} trims @var{char_pred} characters from the left
3309(start) of the string, @code{string-trim-right} trims them from the
3310right (end) of the string, @code{string-trim-both} trims from both
3311ends.
5676b4fa 3312
dc297bb7
KR
3313@var{char_pred} can be a character, a character set, or a predicate
3314procedure to call on each character. If @var{char_pred} is not given
3315the default is whitespace as per @code{char-set:whitespace}
3316(@pxref{Standard Character Sets}).
5676b4fa 3317
dc297bb7
KR
3318@example
3319(string-trim " x ") @result{} "x "
3320(string-trim-right "banana" #\a) @result{} "banan"
3321(string-trim-both ".,xy:;" char-set:punctuation)
3322 @result{} "xy"
3323(string-trim-both "xyzzy" (lambda (c)
3324 (or (eqv? c #\x)
3325 (eqv? c #\y))))
3326 @result{} "zz"
3327@end example
5676b4fa
MV
3328@end deffn
3329
07d83abe
MV
3330@node String Modification
3331@subsubsection String Modification
3332
3333These procedures are for modifying strings in-place. This means that the
3334result of the operation is not a new string; instead, the original string's
3335memory representation is modified.
3336
3337@rnindex string-set!
3338@deffn {Scheme Procedure} string-set! str k chr
3339@deffnx {C Function} scm_string_set_x (str, k, chr)
3340Store @var{chr} in element @var{k} of @var{str} and return
3341an unspecified value. @var{k} must be a valid index of
3342@var{str}.
3343@end deffn
3344
c48c62d0
MV
3345@deftypefn {C Function} void scm_c_string_set_x (SCM str, size_t k, SCM chr)
3346Like @code{scm_string_set_x}, but the index is given as a @code{size_t}.
3347@end deftypefn
3348
07d83abe 3349@rnindex string-fill!
5676b4fa
MV
3350@deffn {Scheme Procedure} string-fill! str chr [start [end]]
3351@deffnx {C Function} scm_substring_fill_x (str, chr, start, end)
07d83abe 3352@deffnx {C Function} scm_string_fill_x (str, chr)
5676b4fa
MV
3353Stores @var{chr} in every element of the given @var{str} and
3354returns an unspecified value.
07d83abe
MV
3355@end deffn
3356
3357@deffn {Scheme Procedure} substring-fill! str start end fill
3358@deffnx {C Function} scm_substring_fill_x (str, start, end, fill)
3359Change every character in @var{str} between @var{start} and
3360@var{end} to @var{fill}.
3361
3362@lisp
4dbd29a9 3363(define y (string-copy "abcdefg"))
07d83abe
MV
3364(substring-fill! y 1 3 #\r)
3365y
3366@result{} "arrdefg"
3367@end lisp
3368@end deffn
3369
3370@deffn {Scheme Procedure} substring-move! str1 start1 end1 str2 start2
3371@deffnx {C Function} scm_substring_move_x (str1, start1, end1, str2, start2)
3372Copy the substring of @var{str1} bounded by @var{start1} and @var{end1}
3373into @var{str2} beginning at position @var{start2}.
3374@var{str1} and @var{str2} can be the same string.
3375@end deffn
3376
5676b4fa
MV
3377@deffn {Scheme Procedure} string-copy! target tstart s [start [end]]
3378@deffnx {C Function} scm_string_copy_x (target, tstart, s, start, end)
3379Copy the sequence of characters from index range [@var{start},
3380@var{end}) in string @var{s} to string @var{target}, beginning
3381at index @var{tstart}. The characters are copied left-to-right
3382or right-to-left as needed -- the copy is guaranteed to work,
3383even if @var{target} and @var{s} are the same string. It is an
3384error if the copy operation runs off the end of the target
3385string.
3386@end deffn
3387
07d83abe
MV
3388
3389@node String Comparison
3390@subsubsection String Comparison
3391
3392The procedures in this section are similar to the character ordering
3393predicates (@pxref{Characters}), but are defined on character sequences.
07d83abe 3394
5676b4fa 3395The first set is specified in R5RS and has names that end in @code{?}.
28cc8dac 3396The second set is specified in SRFI-13 and the names have not ending
67af975c 3397@code{?}.
28cc8dac
MG
3398
3399The predicates ending in @code{-ci} ignore the character case
3400when comparing strings. For now, case-insensitive comparison is done
3401using the R5RS rules, where every lower-case character that has a
3402single character upper-case form is converted to uppercase before
3403comparison. See @xref{Text Collation, the @code{(ice-9
b89c4943 3404i18n)} module}, for locale-dependent string comparison.
07d83abe
MV
3405
3406@rnindex string=?
df0a1002 3407@deffn {Scheme Procedure} string=? s1 s2 s3 @dots{}
3323ec06 3408@deffnx {C Function} scm_i_string_equal_p (s1, s2, rest)
df0a1002
BT
3409Lexicographic equality predicate; return @code{#t} if all strings are
3410the same length and contain the same characters in the same positions,
3411otherwise return @code{#f}.
07d83abe
MV
3412
3413The procedure @code{string-ci=?} treats upper and lower case
3414letters as though they were the same character, but
3415@code{string=?} treats upper and lower case as distinct
3416characters.
3417@end deffn
3418
3419@rnindex string<?
df0a1002 3420@deffn {Scheme Procedure} string<? s1 s2 s3 @dots{}
3323ec06 3421@deffnx {C Function} scm_i_string_less_p (s1, s2, rest)
df0a1002
BT
3422Lexicographic ordering predicate; return @code{#t} if, for every pair of
3423consecutive string arguments @var{str_i} and @var{str_i+1}, @var{str_i} is
3424lexicographically less than @var{str_i+1}.
07d83abe
MV
3425@end deffn
3426
3427@rnindex string<=?
df0a1002 3428@deffn {Scheme Procedure} string<=? s1 s2 s3 @dots{}
3323ec06 3429@deffnx {C Function} scm_i_string_leq_p (s1, s2, rest)
df0a1002
BT
3430Lexicographic ordering predicate; return @code{#t} if, for every pair of
3431consecutive string arguments @var{str_i} and @var{str_i+1}, @var{str_i} is
3432lexicographically less than or equal to @var{str_i+1}.
07d83abe
MV
3433@end deffn
3434
3435@rnindex string>?
df0a1002 3436@deffn {Scheme Procedure} string>? s1 s2 s3 @dots{}
3323ec06 3437@deffnx {C Function} scm_i_string_gr_p (s1, s2, rest)
df0a1002
BT
3438Lexicographic ordering predicate; return @code{#t} if, for every pair of
3439consecutive string arguments @var{str_i} and @var{str_i+1}, @var{str_i} is
3440lexicographically greater than @var{str_i+1}.
07d83abe
MV
3441@end deffn
3442
3443@rnindex string>=?
df0a1002 3444@deffn {Scheme Procedure} string>=? s1 s2 s3 @dots{}
3323ec06 3445@deffnx {C Function} scm_i_string_geq_p (s1, s2, rest)
df0a1002
BT
3446Lexicographic ordering predicate; return @code{#t} if, for every pair of
3447consecutive string arguments @var{str_i} and @var{str_i+1}, @var{str_i} is
3448lexicographically greater than or equal to @var{str_i+1}.
07d83abe
MV
3449@end deffn
3450
3451@rnindex string-ci=?
df0a1002 3452@deffn {Scheme Procedure} string-ci=? s1 s2 s3 @dots{}
3323ec06 3453@deffnx {C Function} scm_i_string_ci_equal_p (s1, s2, rest)
07d83abe 3454Case-insensitive string equality predicate; return @code{#t} if
df0a1002 3455all strings are the same length and their component
07d83abe
MV
3456characters match (ignoring case) at each position; otherwise
3457return @code{#f}.
3458@end deffn
3459
5676b4fa 3460@rnindex string-ci<?
df0a1002 3461@deffn {Scheme Procedure} string-ci<? s1 s2 s3 @dots{}
3323ec06 3462@deffnx {C Function} scm_i_string_ci_less_p (s1, s2, rest)
df0a1002
BT
3463Case insensitive lexicographic ordering predicate; return @code{#t} if,
3464for every pair of consecutive string arguments @var{str_i} and
3465@var{str_i+1}, @var{str_i} is lexicographically less than @var{str_i+1}
07d83abe
MV
3466regardless of case.
3467@end deffn
3468
3469@rnindex string<=?
df0a1002 3470@deffn {Scheme Procedure} string-ci<=? s1 s2 s3 @dots{}
3323ec06 3471@deffnx {C Function} scm_i_string_ci_leq_p (s1, s2, rest)
df0a1002
BT
3472Case insensitive lexicographic ordering predicate; return @code{#t} if,
3473for every pair of consecutive string arguments @var{str_i} and
3474@var{str_i+1}, @var{str_i} is lexicographically less than or equal to
3475@var{str_i+1} regardless of case.
07d83abe
MV
3476@end deffn
3477
3478@rnindex string-ci>?
df0a1002 3479@deffn {Scheme Procedure} string-ci>? s1 s2 s3 @dots{}
3323ec06 3480@deffnx {C Function} scm_i_string_ci_gr_p (s1, s2, rest)
df0a1002
BT
3481Case insensitive lexicographic ordering predicate; return @code{#t} if,
3482for every pair of consecutive string arguments @var{str_i} and
3483@var{str_i+1}, @var{str_i} is lexicographically greater than
3484@var{str_i+1} regardless of case.
07d83abe
MV
3485@end deffn
3486
3487@rnindex string-ci>=?
df0a1002 3488@deffn {Scheme Procedure} string-ci>=? s1 s2 s3 @dots{}
3323ec06 3489@deffnx {C Function} scm_i_string_ci_geq_p (s1, s2, rest)
df0a1002
BT
3490Case insensitive lexicographic ordering predicate; return @code{#t} if,
3491for every pair of consecutive string arguments @var{str_i} and
3492@var{str_i+1}, @var{str_i} is lexicographically greater than or equal to
3493@var{str_i+1} regardless of case.
07d83abe
MV
3494@end deffn
3495
5676b4fa
MV
3496@deffn {Scheme Procedure} string-compare s1 s2 proc_lt proc_eq proc_gt [start1 [end1 [start2 [end2]]]]
3497@deffnx {C Function} scm_string_compare (s1, s2, proc_lt, proc_eq, proc_gt, start1, end1, start2, end2)
3498Apply @var{proc_lt}, @var{proc_eq}, @var{proc_gt} to the
3499mismatch index, depending upon whether @var{s1} is less than,
3500equal to, or greater than @var{s2}. The mismatch index is the
3501largest index @var{i} such that for every 0 <= @var{j} <
3502@var{i}, @var{s1}[@var{j}] = @var{s2}[@var{j}] -- that is,
3503@var{i} is the first position that does not match.
3504@end deffn
3505
3506@deffn {Scheme Procedure} string-compare-ci s1 s2 proc_lt proc_eq proc_gt [start1 [end1 [start2 [end2]]]]
3507@deffnx {C Function} scm_string_compare_ci (s1, s2, proc_lt, proc_eq, proc_gt, start1, end1, start2, end2)
3508Apply @var{proc_lt}, @var{proc_eq}, @var{proc_gt} to the
3509mismatch index, depending upon whether @var{s1} is less than,
3510equal to, or greater than @var{s2}. The mismatch index is the
3511largest index @var{i} such that for every 0 <= @var{j} <
3512@var{i}, @var{s1}[@var{j}] = @var{s2}[@var{j}] -- that is,
3323ec06
NJ
3513@var{i} is the first position where the lowercased letters
3514do not match.
3515
5676b4fa
MV
3516@end deffn
3517
3518@deffn {Scheme Procedure} string= s1 s2 [start1 [end1 [start2 [end2]]]]
3519@deffnx {C Function} scm_string_eq (s1, s2, start1, end1, start2, end2)
3520Return @code{#f} if @var{s1} and @var{s2} are not equal, a true
3521value otherwise.
3522@end deffn
3523
3524@deffn {Scheme Procedure} string<> s1 s2 [start1 [end1 [start2 [end2]]]]
3525@deffnx {C Function} scm_string_neq (s1, s2, start1, end1, start2, end2)
3526Return @code{#f} if @var{s1} and @var{s2} are equal, a true
3527value otherwise.
3528@end deffn
3529
3530@deffn {Scheme Procedure} string< s1 s2 [start1 [end1 [start2 [end2]]]]
3531@deffnx {C Function} scm_string_lt (s1, s2, start1, end1, start2, end2)
3532Return @code{#f} if @var{s1} is greater or equal to @var{s2}, a
3533true value otherwise.
3534@end deffn
3535
3536@deffn {Scheme Procedure} string> s1 s2 [start1 [end1 [start2 [end2]]]]
3537@deffnx {C Function} scm_string_gt (s1, s2, start1, end1, start2, end2)
3538Return @code{#f} if @var{s1} is less or equal to @var{s2}, a
3539true value otherwise.
3540@end deffn
3541
3542@deffn {Scheme Procedure} string<= s1 s2 [start1 [end1 [start2 [end2]]]]
3543@deffnx {C Function} scm_string_le (s1, s2, start1, end1, start2, end2)
3544Return @code{#f} if @var{s1} is greater to @var{s2}, a true
3545value otherwise.
3546@end deffn
3547
3548@deffn {Scheme Procedure} string>= s1 s2 [start1 [end1 [start2 [end2]]]]
3549@deffnx {C Function} scm_string_ge (s1, s2, start1, end1, start2, end2)
3550Return @code{#f} if @var{s1} is less to @var{s2}, a true value
3551otherwise.
3552@end deffn
3553
3554@deffn {Scheme Procedure} string-ci= s1 s2 [start1 [end1 [start2 [end2]]]]
3555@deffnx {C Function} scm_string_ci_eq (s1, s2, start1, end1, start2, end2)
3556Return @code{#f} if @var{s1} and @var{s2} are not equal, a true
3557value otherwise. The character comparison is done
3558case-insensitively.
3559@end deffn
3560
3561@deffn {Scheme Procedure} string-ci<> s1 s2 [start1 [end1 [start2 [end2]]]]
3562@deffnx {C Function} scm_string_ci_neq (s1, s2, start1, end1, start2, end2)
3563Return @code{#f} if @var{s1} and @var{s2} are equal, a true
3564value otherwise. The character comparison is done
3565case-insensitively.
3566@end deffn
3567
3568@deffn {Scheme Procedure} string-ci< s1 s2 [start1 [end1 [start2 [end2]]]]
3569@deffnx {C Function} scm_string_ci_lt (s1, s2, start1, end1, start2, end2)
3570Return @code{#f} if @var{s1} is greater or equal to @var{s2}, a
3571true value otherwise. The character comparison is done
3572case-insensitively.
3573@end deffn
3574
3575@deffn {Scheme Procedure} string-ci> s1 s2 [start1 [end1 [start2 [end2]]]]
3576@deffnx {C Function} scm_string_ci_gt (s1, s2, start1, end1, start2, end2)
3577Return @code{#f} if @var{s1} is less or equal to @var{s2}, a
3578true value otherwise. The character comparison is done
3579case-insensitively.
3580@end deffn
3581
3582@deffn {Scheme Procedure} string-ci<= s1 s2 [start1 [end1 [start2 [end2]]]]
3583@deffnx {C Function} scm_string_ci_le (s1, s2, start1, end1, start2, end2)
3584Return @code{#f} if @var{s1} is greater to @var{s2}, a true
3585value otherwise. The character comparison is done
3586case-insensitively.
3587@end deffn
3588
3589@deffn {Scheme Procedure} string-ci>= s1 s2 [start1 [end1 [start2 [end2]]]]
3590@deffnx {C Function} scm_string_ci_ge (s1, s2, start1, end1, start2, end2)
3591Return @code{#f} if @var{s1} is less to @var{s2}, a true value
3592otherwise. The character comparison is done
3593case-insensitively.
3594@end deffn
3595
3596@deffn {Scheme Procedure} string-hash s [bound [start [end]]]
3597@deffnx {C Function} scm_substring_hash (s, bound, start, end)
64de6db5 3598Compute a hash value for @var{s}. The optional argument @var{bound} is a non-negative exact integer specifying the range of the hash function. A positive value restricts the return value to the range [0,bound).
5676b4fa
MV
3599@end deffn
3600
3601@deffn {Scheme Procedure} string-hash-ci s [bound [start [end]]]
3602@deffnx {C Function} scm_substring_hash_ci (s, bound, start, end)
64de6db5 3603Compute a hash value for @var{s}. The optional argument @var{bound} is a non-negative exact integer specifying the range of the hash function. A positive value restricts the return value to the range [0,bound).
5676b4fa 3604@end deffn
07d83abe 3605
edb7bb47
JG
3606Because the same visual appearance of an abstract Unicode character can
3607be obtained via multiple sequences of Unicode characters, even the
3608case-insensitive string comparison functions described above may return
3609@code{#f} when presented with strings containing different
3610representations of the same character. For example, the Unicode
3611character ``LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE'' can be
3612represented with a single character (U+1E69) or by the character ``LATIN
3613SMALL LETTER S'' (U+0073) followed by the combining marks ``COMBINING
3614DOT BELOW'' (U+0323) and ``COMBINING DOT ABOVE'' (U+0307).
3615
3616For this reason, it is often desirable to ensure that the strings
3617to be compared are using a mutually consistent representation for every
3618character. The Unicode standard defines two methods of normalizing the
3619contents of strings: Decomposition, which breaks composite characters
3620into a set of constituent characters with an ordering defined by the
3621Unicode Standard; and composition, which performs the converse.
3622
3623There are two decomposition operations. ``Canonical decomposition''
3624produces character sequences that share the same visual appearance as
ecb87335 3625the original characters, while ``compatibility decomposition'' produces
edb7bb47
JG
3626ones whose visual appearances may differ from the originals but which
3627represent the same abstract character.
3628
3629These operations are encapsulated in the following set of normalization
3630forms:
3631
3632@table @dfn
3633@item NFD
3634Characters are decomposed to their canonical forms.
3635
3636@item NFKD
3637Characters are decomposed to their compatibility forms.
3638
3639@item NFC
3640Characters are decomposed to their canonical forms, then composed.
3641
3642@item NFKC
3643Characters are decomposed to their compatibility forms, then composed.
3644
3645@end table
3646
3647The functions below put their arguments into one of the forms described
3648above.
3649
3650@deffn {Scheme Procedure} string-normalize-nfd s
3651@deffnx {C Function} scm_string_normalize_nfd (s)
3652Return the @code{NFD} normalized form of @var{s}.
3653@end deffn
3654
3655@deffn {Scheme Procedure} string-normalize-nfkd s
3656@deffnx {C Function} scm_string_normalize_nfkd (s)
3657Return the @code{NFKD} normalized form of @var{s}.
3658@end deffn
3659
3660@deffn {Scheme Procedure} string-normalize-nfc s
3661@deffnx {C Function} scm_string_normalize_nfc (s)
3662Return the @code{NFC} normalized form of @var{s}.
3663@end deffn
3664
3665@deffn {Scheme Procedure} string-normalize-nfkc s
3666@deffnx {C Function} scm_string_normalize_nfkc (s)
3667Return the @code{NFKC} normalized form of @var{s}.
3668@end deffn
3669
07d83abe
MV
3670@node String Searching
3671@subsubsection String Searching
3672
5676b4fa
MV
3673@deffn {Scheme Procedure} string-index s char_pred [start [end]]
3674@deffnx {C Function} scm_string_index (s, char_pred, start, end)
3675Search through the string @var{s} from left to right, returning
be3eb25c 3676the index of the first occurrence of a character which
07d83abe 3677
5676b4fa
MV
3678@itemize @bullet
3679@item
3680equals @var{char_pred}, if it is character,
07d83abe 3681
5676b4fa 3682@item
be3eb25c 3683satisfies the predicate @var{char_pred}, if it is a procedure,
07d83abe 3684
5676b4fa
MV
3685@item
3686is in the set @var{char_pred}, if it is a character set.
3687@end itemize
bf7c2e96
LC
3688
3689Return @code{#f} if no match is found.
5676b4fa 3690@end deffn
07d83abe 3691
5676b4fa
MV
3692@deffn {Scheme Procedure} string-rindex s char_pred [start [end]]
3693@deffnx {C Function} scm_string_rindex (s, char_pred, start, end)
3694Search through the string @var{s} from right to left, returning
be3eb25c 3695the index of the last occurrence of a character which
5676b4fa
MV
3696
3697@itemize @bullet
3698@item
3699equals @var{char_pred}, if it is character,
3700
3701@item
be3eb25c 3702satisfies the predicate @var{char_pred}, if it is a procedure,
5676b4fa
MV
3703
3704@item
3705is in the set if @var{char_pred} is a character set.
3706@end itemize
bf7c2e96
LC
3707
3708Return @code{#f} if no match is found.
07d83abe
MV
3709@end deffn
3710
5676b4fa
MV
3711@deffn {Scheme Procedure} string-prefix-length s1 s2 [start1 [end1 [start2 [end2]]]]
3712@deffnx {C Function} scm_string_prefix_length (s1, s2, start1, end1, start2, end2)
3713Return the length of the longest common prefix of the two
3714strings.
3715@end deffn
07d83abe 3716
5676b4fa
MV
3717@deffn {Scheme Procedure} string-prefix-length-ci s1 s2 [start1 [end1 [start2 [end2]]]]
3718@deffnx {C Function} scm_string_prefix_length_ci (s1, s2, start1, end1, start2, end2)
3719Return the length of the longest common prefix of the two
3720strings, ignoring character case.
3721@end deffn
07d83abe 3722
5676b4fa
MV
3723@deffn {Scheme Procedure} string-suffix-length s1 s2 [start1 [end1 [start2 [end2]]]]
3724@deffnx {C Function} scm_string_suffix_length (s1, s2, start1, end1, start2, end2)
3725Return the length of the longest common suffix of the two
3726strings.
3727@end deffn
07d83abe 3728
5676b4fa
MV
3729@deffn {Scheme Procedure} string-suffix-length-ci s1 s2 [start1 [end1 [start2 [end2]]]]
3730@deffnx {C Function} scm_string_suffix_length_ci (s1, s2, start1, end1, start2, end2)
3731Return the length of the longest common suffix of the two
3732strings, ignoring character case.
3733@end deffn
3734
3735@deffn {Scheme Procedure} string-prefix? s1 s2 [start1 [end1 [start2 [end2]]]]
3736@deffnx {C Function} scm_string_prefix_p (s1, s2, start1, end1, start2, end2)
3737Is @var{s1} a prefix of @var{s2}?
3738@end deffn
3739
3740@deffn {Scheme Procedure} string-prefix-ci? s1 s2 [start1 [end1 [start2 [end2]]]]
3741@deffnx {C Function} scm_string_prefix_ci_p (s1, s2, start1, end1, start2, end2)
3742Is @var{s1} a prefix of @var{s2}, ignoring character case?
3743@end deffn
3744
3745@deffn {Scheme Procedure} string-suffix? s1 s2 [start1 [end1 [start2 [end2]]]]
3746@deffnx {C Function} scm_string_suffix_p (s1, s2, start1, end1, start2, end2)
3747Is @var{s1} a suffix of @var{s2}?
3748@end deffn
3749
3750@deffn {Scheme Procedure} string-suffix-ci? s1 s2 [start1 [end1 [start2 [end2]]]]
3751@deffnx {C Function} scm_string_suffix_ci_p (s1, s2, start1, end1, start2, end2)
3752Is @var{s1} a suffix of @var{s2}, ignoring character case?
3753@end deffn
3754
3755@deffn {Scheme Procedure} string-index-right s char_pred [start [end]]
3756@deffnx {C Function} scm_string_index_right (s, char_pred, start, end)
3757Search through the string @var{s} from right to left, returning
be3eb25c 3758the index of the last occurrence of a character which
5676b4fa
MV
3759
3760@itemize @bullet
3761@item
3762equals @var{char_pred}, if it is character,
3763
3764@item
be3eb25c 3765satisfies the predicate @var{char_pred}, if it is a procedure,
5676b4fa
MV
3766
3767@item
3768is in the set if @var{char_pred} is a character set.
3769@end itemize
bf7c2e96
LC
3770
3771Return @code{#f} if no match is found.
5676b4fa
MV
3772@end deffn
3773
3774@deffn {Scheme Procedure} string-skip s char_pred [start [end]]
3775@deffnx {C Function} scm_string_skip (s, char_pred, start, end)
3776Search through the string @var{s} from left to right, returning
be3eb25c 3777the index of the first occurrence of a character which
5676b4fa
MV
3778
3779@itemize @bullet
3780@item
3781does not equal @var{char_pred}, if it is character,
3782
3783@item
be3eb25c 3784does not satisfy the predicate @var{char_pred}, if it is a
5676b4fa
MV
3785procedure,
3786
3787@item
3788is not in the set if @var{char_pred} is a character set.
3789@end itemize
3790@end deffn
3791
3792@deffn {Scheme Procedure} string-skip-right s char_pred [start [end]]
3793@deffnx {C Function} scm_string_skip_right (s, char_pred, start, end)
3794Search through the string @var{s} from right to left, returning
be3eb25c 3795the index of the last occurrence of a character which
5676b4fa
MV
3796
3797@itemize @bullet
3798@item
3799does not equal @var{char_pred}, if it is character,
3800
3801@item
3802does not satisfy the predicate @var{char_pred}, if it is a
3803procedure,
3804
3805@item
3806is not in the set if @var{char_pred} is a character set.
3807@end itemize
3808@end deffn
3809
3810@deffn {Scheme Procedure} string-count s char_pred [start [end]]
3811@deffnx {C Function} scm_string_count (s, char_pred, start, end)
3812Return the count of the number of characters in the string
3813@var{s} which
3814
3815@itemize @bullet
3816@item
3817equals @var{char_pred}, if it is character,
3818
3819@item
be3eb25c 3820satisfies the predicate @var{char_pred}, if it is a procedure.
5676b4fa
MV
3821
3822@item
3823is in the set @var{char_pred}, if it is a character set.
3824@end itemize
3825@end deffn
3826
3827@deffn {Scheme Procedure} string-contains s1 s2 [start1 [end1 [start2 [end2]]]]
3828@deffnx {C Function} scm_string_contains (s1, s2, start1, end1, start2, end2)
3829Does string @var{s1} contain string @var{s2}? Return the index
3830in @var{s1} where @var{s2} occurs as a substring, or false.
3831The optional start/end indices restrict the operation to the
3832indicated substrings.
3833@end deffn
3834
3835@deffn {Scheme Procedure} string-contains-ci s1 s2 [start1 [end1 [start2 [end2]]]]
3836@deffnx {C Function} scm_string_contains_ci (s1, s2, start1, end1, start2, end2)
3837Does string @var{s1} contain string @var{s2}? Return the index
3838in @var{s1} where @var{s2} occurs as a substring, or false.
3839The optional start/end indices restrict the operation to the
3840indicated substrings. Character comparison is done
3841case-insensitively.
07d83abe
MV
3842@end deffn
3843
3844@node Alphabetic Case Mapping
3845@subsubsection Alphabetic Case Mapping
3846
3847These are procedures for mapping strings to their upper- or lower-case
3848equivalents, respectively, or for capitalizing strings.
3849
67af975c
MG
3850They use the basic case mapping rules for Unicode characters. No
3851special language or context rules are considered. The resulting strings
3852are guaranteed to be the same length as the input strings.
3853
3854@xref{Character Case Mapping, the @code{(ice-9
3855i18n)} module}, for locale-dependent case conversions.
3856
5676b4fa
MV
3857@deffn {Scheme Procedure} string-upcase str [start [end]]
3858@deffnx {C Function} scm_substring_upcase (str, start, end)
07d83abe 3859@deffnx {C Function} scm_string_upcase (str)
5676b4fa 3860Upcase every character in @code{str}.
07d83abe
MV
3861@end deffn
3862
5676b4fa
MV
3863@deffn {Scheme Procedure} string-upcase! str [start [end]]
3864@deffnx {C Function} scm_substring_upcase_x (str, start, end)
07d83abe 3865@deffnx {C Function} scm_string_upcase_x (str)
5676b4fa
MV
3866Destructively upcase every character in @code{str}.
3867
07d83abe 3868@lisp
5676b4fa
MV
3869(string-upcase! y)
3870@result{} "ARRDEFG"
3871y
3872@result{} "ARRDEFG"
07d83abe
MV
3873@end lisp
3874@end deffn
3875
5676b4fa
MV
3876@deffn {Scheme Procedure} string-downcase str [start [end]]
3877@deffnx {C Function} scm_substring_downcase (str, start, end)
07d83abe 3878@deffnx {C Function} scm_string_downcase (str)
5676b4fa 3879Downcase every character in @var{str}.
07d83abe
MV
3880@end deffn
3881
5676b4fa
MV
3882@deffn {Scheme Procedure} string-downcase! str [start [end]]
3883@deffnx {C Function} scm_substring_downcase_x (str, start, end)
07d83abe 3884@deffnx {C Function} scm_string_downcase_x (str)
5676b4fa
MV
3885Destructively downcase every character in @var{str}.
3886
07d83abe 3887@lisp
5676b4fa
MV
3888y
3889@result{} "ARRDEFG"
3890(string-downcase! y)
3891@result{} "arrdefg"
3892y
3893@result{} "arrdefg"
07d83abe
MV
3894@end lisp
3895@end deffn
3896
3897@deffn {Scheme Procedure} string-capitalize str
3898@deffnx {C Function} scm_string_capitalize (str)
3899Return a freshly allocated string with the characters in
3900@var{str}, where the first character of every word is
3901capitalized.
3902@end deffn
3903
3904@deffn {Scheme Procedure} string-capitalize! str
3905@deffnx {C Function} scm_string_capitalize_x (str)
3906Upcase the first character of every word in @var{str}
3907destructively and return @var{str}.
3908
3909@lisp
3910y @result{} "hello world"
3911(string-capitalize! y) @result{} "Hello World"
3912y @result{} "Hello World"
3913@end lisp
3914@end deffn
3915
5676b4fa
MV
3916@deffn {Scheme Procedure} string-titlecase str [start [end]]
3917@deffnx {C Function} scm_string_titlecase (str, start, end)
3918Titlecase every first character in a word in @var{str}.
3919@end deffn
07d83abe 3920
5676b4fa
MV
3921@deffn {Scheme Procedure} string-titlecase! str [start [end]]
3922@deffnx {C Function} scm_string_titlecase_x (str, start, end)
3923Destructively titlecase every first character in a word in
3924@var{str}.
3925@end deffn
3926
3927@node Reversing and Appending Strings
3928@subsubsection Reversing and Appending Strings
07d83abe 3929
5676b4fa
MV
3930@deffn {Scheme Procedure} string-reverse str [start [end]]
3931@deffnx {C Function} scm_string_reverse (str, start, end)
3932Reverse the string @var{str}. The optional arguments
3933@var{start} and @var{end} delimit the region of @var{str} to
3934operate on.
3935@end deffn
3936
3937@deffn {Scheme Procedure} string-reverse! str [start [end]]
3938@deffnx {C Function} scm_string_reverse_x (str, start, end)
3939Reverse the string @var{str} in-place. The optional arguments
3940@var{start} and @var{end} delimit the region of @var{str} to
3941operate on. The return value is unspecified.
3942@end deffn
07d83abe
MV
3943
3944@rnindex string-append
df0a1002 3945@deffn {Scheme Procedure} string-append arg @dots{}
07d83abe
MV
3946@deffnx {C Function} scm_string_append (args)
3947Return a newly allocated string whose characters form the
df0a1002 3948concatenation of the given strings, @var{arg} @enddots{}.
07d83abe
MV
3949
3950@example
3951(let ((h "hello "))
3952 (string-append h "world"))
3953@result{} "hello world"
3954@end example
3955@end deffn
3956
df0a1002
BT
3957@deffn {Scheme Procedure} string-append/shared arg @dots{}
3958@deffnx {C Function} scm_string_append_shared (args)
5676b4fa
MV
3959Like @code{string-append}, but the result may share memory
3960with the argument strings.
3961@end deffn
3962
3963@deffn {Scheme Procedure} string-concatenate ls
3964@deffnx {C Function} scm_string_concatenate (ls)
df0a1002
BT
3965Append the elements (which must be strings) of @var{ls} together into a
3966single string. Guaranteed to return a freshly allocated string.
5676b4fa
MV
3967@end deffn
3968
3969@deffn {Scheme Procedure} string-concatenate-reverse ls [final_string [end]]
3970@deffnx {C Function} scm_string_concatenate_reverse (ls, final_string, end)
3971Without optional arguments, this procedure is equivalent to
3972
aba0dff5 3973@lisp
5676b4fa 3974(string-concatenate (reverse ls))
aba0dff5 3975@end lisp
5676b4fa
MV
3976
3977If the optional argument @var{final_string} is specified, it is
3978consed onto the beginning to @var{ls} before performing the
3979list-reverse and string-concatenate operations. If @var{end}
3980is given, only the characters of @var{final_string} up to index
3981@var{end} are used.
3982
3983Guaranteed to return a freshly allocated string.
3984@end deffn
3985
3986@deffn {Scheme Procedure} string-concatenate/shared ls
3987@deffnx {C Function} scm_string_concatenate_shared (ls)
3988Like @code{string-concatenate}, but the result may share memory
3989with the strings in the list @var{ls}.
3990@end deffn
3991
3992@deffn {Scheme Procedure} string-concatenate-reverse/shared ls [final_string [end]]
3993@deffnx {C Function} scm_string_concatenate_reverse_shared (ls, final_string, end)
3994Like @code{string-concatenate-reverse}, but the result may
72b3aa56 3995share memory with the strings in the @var{ls} arguments.
5676b4fa
MV
3996@end deffn
3997
3998@node Mapping Folding and Unfolding
3999@subsubsection Mapping, Folding, and Unfolding
4000
4001@deffn {Scheme Procedure} string-map proc s [start [end]]
4002@deffnx {C Function} scm_string_map (proc, s, start, end)
4003@var{proc} is a char->char procedure, it is mapped over
4004@var{s}. The order in which the procedure is applied to the
4005string elements is not specified.
4006@end deffn
4007
4008@deffn {Scheme Procedure} string-map! proc s [start [end]]
4009@deffnx {C Function} scm_string_map_x (proc, s, start, end)
4010@var{proc} is a char->char procedure, it is mapped over
4011@var{s}. The order in which the procedure is applied to the
4012string elements is not specified. The string @var{s} is
4013modified in-place, the return value is not specified.
4014@end deffn
4015
4016@deffn {Scheme Procedure} string-for-each proc s [start [end]]
4017@deffnx {C Function} scm_string_for_each (proc, s, start, end)
4018@var{proc} is mapped over @var{s} in left-to-right order. The
4019return value is not specified.
4020@end deffn
4021
4022@deffn {Scheme Procedure} string-for-each-index proc s [start [end]]
4023@deffnx {C Function} scm_string_for_each_index (proc, s, start, end)
2a7820f2
KR
4024Call @code{(@var{proc} i)} for each index i in @var{s}, from left to
4025right.
4026
4027For example, to change characters to alternately upper and lower case,
4028
4029@example
4030(define str (string-copy "studly"))
45867c2a
NJ
4031(string-for-each-index
4032 (lambda (i)
4033 (string-set! str i
4034 ((if (even? i) char-upcase char-downcase)
4035 (string-ref str i))))
4036 str)
2a7820f2
KR
4037str @result{} "StUdLy"
4038@end example
5676b4fa
MV
4039@end deffn
4040
4041@deffn {Scheme Procedure} string-fold kons knil s [start [end]]
4042@deffnx {C Function} scm_string_fold (kons, knil, s, start, end)
4043Fold @var{kons} over the characters of @var{s}, with @var{knil}
4044as the terminating element, from left to right. @var{kons}
4045must expect two arguments: The actual character and the last
4046result of @var{kons}' application.
4047@end deffn
4048
4049@deffn {Scheme Procedure} string-fold-right kons knil s [start [end]]
4050@deffnx {C Function} scm_string_fold_right (kons, knil, s, start, end)
4051Fold @var{kons} over the characters of @var{s}, with @var{knil}
4052as the terminating element, from right to left. @var{kons}
4053must expect two arguments: The actual character and the last
4054result of @var{kons}' application.
4055@end deffn
4056
4057@deffn {Scheme Procedure} string-unfold p f g seed [base [make_final]]
4058@deffnx {C Function} scm_string_unfold (p, f, g, seed, base, make_final)
4059@itemize @bullet
4060@item @var{g} is used to generate a series of @emph{seed}
4061values from the initial @var{seed}: @var{seed}, (@var{g}
4062@var{seed}), (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}),
4063@dots{}
4064@item @var{p} tells us when to stop -- when it returns true
4065when applied to one of these seed values.
4066@item @var{f} maps each seed value to the corresponding
4067character in the result string. These chars are assembled
4068into the string in a left-to-right order.
4069@item @var{base} is the optional initial/leftmost portion
4070of the constructed string; it default to the empty
4071string.
4072@item @var{make_final} is applied to the terminal seed
4073value (on which @var{p} returns true) to produce
4074the final/rightmost portion of the constructed string.
9a18d8d4 4075The default is nothing extra.
5676b4fa
MV
4076@end itemize
4077@end deffn
4078
4079@deffn {Scheme Procedure} string-unfold-right p f g seed [base [make_final]]
4080@deffnx {C Function} scm_string_unfold_right (p, f, g, seed, base, make_final)
4081@itemize @bullet
4082@item @var{g} is used to generate a series of @emph{seed}
4083values from the initial @var{seed}: @var{seed}, (@var{g}
4084@var{seed}), (@var{g}^2 @var{seed}), (@var{g}^3 @var{seed}),
4085@dots{}
4086@item @var{p} tells us when to stop -- when it returns true
4087when applied to one of these seed values.
4088@item @var{f} maps each seed value to the corresponding
4089character in the result string. These chars are assembled
4090into the string in a right-to-left order.
4091@item @var{base} is the optional initial/rightmost portion
4092of the constructed string; it default to the empty
4093string.
4094@item @var{make_final} is applied to the terminal seed
4095value (on which @var{p} returns true) to produce
4096the final/leftmost portion of the constructed string.
4097It defaults to @code{(lambda (x) )}.
4098@end itemize
4099@end deffn
4100
4101@node Miscellaneous String Operations
4102@subsubsection Miscellaneous String Operations
4103
4104@deffn {Scheme Procedure} xsubstring s from [to [start [end]]]
4105@deffnx {C Function} scm_xsubstring (s, from, to, start, end)
4106This is the @emph{extended substring} procedure that implements
4107replicated copying of a substring of some string.
4108
4109@var{s} is a string, @var{start} and @var{end} are optional
4110arguments that demarcate a substring of @var{s}, defaulting to
41110 and the length of @var{s}. Replicate this substring up and
4112down index space, in both the positive and negative directions.
4113@code{xsubstring} returns the substring of this string
4114beginning at index @var{from}, and ending at @var{to}, which
4115defaults to @var{from} + (@var{end} - @var{start}).
4116@end deffn
4117
4118@deffn {Scheme Procedure} string-xcopy! target tstart s sfrom [sto [start [end]]]
4119@deffnx {C Function} scm_string_xcopy_x (target, tstart, s, sfrom, sto, start, end)
4120Exactly the same as @code{xsubstring}, but the extracted text
4121is written into the string @var{target} starting at index
4122@var{tstart}. The operation is not defined if @code{(eq?
4123@var{target} @var{s})} or these arguments share storage -- you
4124cannot copy a string on top of itself.
4125@end deffn
4126
4127@deffn {Scheme Procedure} string-replace s1 s2 [start1 [end1 [start2 [end2]]]]
4128@deffnx {C Function} scm_string_replace (s1, s2, start1, end1, start2, end2)
4129Return the string @var{s1}, but with the characters
4130@var{start1} @dots{} @var{end1} replaced by the characters
4131@var{start2} @dots{} @var{end2} from @var{s2}.
4132@end deffn
4133
4134@deffn {Scheme Procedure} string-tokenize s [token_set [start [end]]]
4135@deffnx {C Function} scm_string_tokenize (s, token_set, start, end)
4136Split the string @var{s} into a list of substrings, where each
4137substring is a maximal non-empty contiguous sequence of
4138characters from the character set @var{token_set}, which
4139defaults to @code{char-set:graphic}.
4140If @var{start} or @var{end} indices are provided, they restrict
4141@code{string-tokenize} to operating on the indicated substring
4142of @var{s}.
4143@end deffn
4144
9fe717e2
AW
4145@deffn {Scheme Procedure} string-filter char_pred s [start [end]]
4146@deffnx {C Function} scm_string_filter (char_pred, s, start, end)
08de3e24 4147Filter the string @var{s}, retaining only those characters which
a88e2a96 4148satisfy @var{char_pred}.
08de3e24
KR
4149
4150If @var{char_pred} is a procedure, it is applied to each character as
4151a predicate, if it is a character, it is tested for equality and if it
4152is a character set, it is tested for membership.
5676b4fa
MV
4153@end deffn
4154
9fe717e2
AW
4155@deffn {Scheme Procedure} string-delete char_pred s [start [end]]
4156@deffnx {C Function} scm_string_delete (char_pred, s, start, end)
a88e2a96 4157Delete characters satisfying @var{char_pred} from @var{s}.
08de3e24
KR
4158
4159If @var{char_pred} is a procedure, it is applied to each character as
4160a predicate, if it is a character, it is tested for equality and if it
4161is a character set, it is tested for membership.
5676b4fa
MV
4162@end deffn
4163
91210d62
MV
4164@node Conversion to/from C
4165@subsubsection Conversion to/from C
4166
4167When creating a Scheme string from a C string or when converting a
4168Scheme string to a C string, the concept of character encoding becomes
4169important.
4170
4171In C, a string is just a sequence of bytes, and the character encoding
4172describes the relation between these bytes and the actual characters
c88453e8
MV
4173that make up the string. For Scheme strings, character encoding is
4174not an issue (most of the time), since in Scheme you never get to see
4175the bytes, only the characters.
91210d62 4176
67af975c
MG
4177Converting to C and converting from C each have their own challenges.
4178
4179When converting from C to Scheme, it is important that the sequence of
4180bytes in the C string be valid with respect to its encoding. ASCII
4181strings, for example, can't have any bytes greater than 127. An ASCII
4182byte greater than 127 is considered @emph{ill-formed} and cannot be
4183converted into a Scheme character.
4184
4185Problems can occur in the reverse operation as well. Not all character
4186encodings can hold all possible Scheme characters. Some encodings, like
4187ASCII for example, can only describe a small subset of all possible
4188characters. So, when converting to C, one must first decide what to do
4189with Scheme characters that can't be represented in the C string.
91210d62 4190
c88453e8
MV
4191Converting a Scheme string to a C string will often allocate fresh
4192memory to hold the result. You must take care that this memory is
4193properly freed eventually. In many cases, this can be achieved by
661ae7ab
MV
4194using @code{scm_dynwind_free} inside an appropriate dynwind context,
4195@xref{Dynamic Wind}.
91210d62
MV
4196
4197@deftypefn {C Function} SCM scm_from_locale_string (const char *str)
4198@deftypefnx {C Function} SCM scm_from_locale_stringn (const char *str, size_t len)
67af975c 4199Creates a new Scheme string that has the same contents as @var{str} when
95f5e303 4200interpreted in the character encoding of the current locale.
91210d62
MV
4201
4202For @code{scm_from_locale_string}, @var{str} must be null-terminated.
4203
4204For @code{scm_from_locale_stringn}, @var{len} specifies the length of
4205@var{str} in bytes, and @var{str} does not need to be null-terminated.
4206If @var{len} is @code{(size_t)-1}, then @var{str} does need to be
4207null-terminated and the real length will be found with @code{strlen}.
67af975c
MG
4208
4209If the C string is ill-formed, an error will be raised.
ce3ce21c
MW
4210
4211Note that these functions should @emph{not} be used to convert C string
4212constants, because there is no guarantee that the current locale will
4213match that of the source code. To convert C string constants, use
4214@code{scm_from_latin1_string}, @code{scm_from_utf8_string} or
4215@code{scm_from_utf32_string}.
91210d62
MV
4216@end deftypefn
4217
4218@deftypefn {C Function} SCM scm_take_locale_string (char *str)
4219@deftypefnx {C Function} SCM scm_take_locale_stringn (char *str, size_t len)
4220Like @code{scm_from_locale_string} and @code{scm_from_locale_stringn},
4221respectively, but also frees @var{str} with @code{free} eventually.
4222Thus, you can use this function when you would free @var{str} anyway
4223immediately after creating the Scheme string. In certain cases, Guile
4224can then use @var{str} directly as its internal representation.
4225@end deftypefn
4226
4846ae2c
KR
4227@deftypefn {C Function} {char *} scm_to_locale_string (SCM str)
4228@deftypefnx {C Function} {char *} scm_to_locale_stringn (SCM str, size_t *lenp)
95f5e303
AW
4229Returns a C string with the same contents as @var{str} in the character
4230encoding of the current locale. The C string must be freed with
4231@code{free} eventually, maybe by using @code{scm_dynwind_free},
67af975c 4232@xref{Dynamic Wind}.
91210d62
MV
4233
4234For @code{scm_to_locale_string}, the returned string is
4235null-terminated and an error is signalled when @var{str} contains
4236@code{#\nul} characters.
4237
4238For @code{scm_to_locale_stringn} and @var{lenp} not @code{NULL},
4239@var{str} might contain @code{#\nul} characters and the length of the
4240returned string in bytes is stored in @code{*@var{lenp}}. The
4241returned string will not be null-terminated in this case. If
4242@var{lenp} is @code{NULL}, @code{scm_to_locale_stringn} behaves like
4243@code{scm_to_locale_string}.
67af975c 4244
95f5e303
AW
4245If a character in @var{str} cannot be represented in the character
4246encoding of the current locale, the default port conversion strategy is
4247used. @xref{Ports}, for more on conversion strategies.
4248
4249If the conversion strategy is @code{error}, an error will be raised. If
4250it is @code{substitute}, a replacement character, such as a question
4251mark, will be inserted in its place. If it is @code{escape}, a hex
4252escape will be inserted in its place.
91210d62
MV
4253@end deftypefn
4254
4255@deftypefn {C Function} size_t scm_to_locale_stringbuf (SCM str, char *buf, size_t max_len)
4256Puts @var{str} as a C string in the current locale encoding into the
4257memory pointed to by @var{buf}. The buffer at @var{buf} has room for
4258@var{max_len} bytes and @code{scm_to_local_stringbuf} will never store
4259more than that. No terminating @code{'\0'} will be stored.
4260
4261The return value of @code{scm_to_locale_stringbuf} is the number of
4262bytes that are needed for all of @var{str}, regardless of whether
4263@var{buf} was large enough to hold them. Thus, when the return value
4264is larger than @var{max_len}, only @var{max_len} bytes have been
4265stored and you probably need to try again with a larger buffer.
4266@end deftypefn
cf313a94
MG
4267
4268For most situations, string conversion should occur using the current
4269locale, such as with the functions above. But there may be cases where
4270one wants to convert strings from a character encoding other than the
4271locale's character encoding. For these cases, the lower-level functions
4272@code{scm_to_stringn} and @code{scm_from_stringn} are provided. These
4273functions should seldom be necessary if one is properly using locales.
4274
4275@deftp {C Type} scm_t_string_failed_conversion_handler
4276This is an enumerated type that can take one of three values:
4277@code{SCM_FAILED_CONVERSION_ERROR},
4278@code{SCM_FAILED_CONVERSION_QUESTION_MARK}, and
4279@code{SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE}. They are used to indicate
4280a strategy for handling characters that cannot be converted to or from a
4281given character encoding. @code{SCM_FAILED_CONVERSION_ERROR} indicates
4282that a conversion should throw an error if some characters cannot be
4283converted. @code{SCM_FAILED_CONVERSION_QUESTION_MARK} indicates that a
4284conversion should replace unconvertable characters with the question
4285mark character. And, @code{SCM_FAILED_CONVERSION_ESCAPE_SEQUENCE}
4286requests that a conversion should replace an unconvertable character
4287with an escape sequence.
4288
4289While all three strategies apply when converting Scheme strings to C,
4290only @code{SCM_FAILED_CONVERSION_ERROR} and
4291@code{SCM_FAILED_CONVERSION_QUESTION_MARK} can be used when converting C
4292strings to Scheme.
4293@end deftp
4294
4295@deftypefn {C Function} char *scm_to_stringn (SCM str, size_t *lenp, const char *encoding, scm_t_string_failed_conversion_handler handler)
4296This function returns a newly allocated C string from the Guile string
68a78738
MW
4297@var{str}. The length of the returned string in bytes will be returned in
4298@var{lenp}. The character encoding of the C string is passed as the ASCII,
cf313a94
MG
4299null-terminated C string @var{encoding}. The @var{handler} parameter
4300gives a strategy for dealing with characters that cannot be converted
4301into @var{encoding}.
4302
68a78738 4303If @var{lenp} is @code{NULL}, this function will return a null-terminated C
cf313a94
MG
4304string. It will throw an error if the string contains a null
4305character.
4306@end deftypefn
4307
4308@deftypefn {C Function} SCM scm_from_stringn (const char *str, size_t len, const char *encoding, scm_t_string_failed_conversion_handler handler)
4309This function returns a scheme string from the C string @var{str}. The
c3d8450c 4310length in bytes of the C string is input as @var{len}. The encoding of the C
cf313a94
MG
4311string is passed as the ASCII, null-terminated C string @code{encoding}.
4312The @var{handler} parameters suggests a strategy for dealing with
4313unconvertable characters.
4314@end deftypefn
4315
ce3ce21c
MW
4316The following conversion functions are provided as a convenience for the
4317most commonly used encodings.
4318
4319@deftypefn {C Function} SCM scm_from_latin1_string (const char *str)
4320@deftypefnx {C Function} SCM scm_from_utf8_string (const char *str)
4321@deftypefnx {C Function} SCM scm_from_utf32_string (const scm_t_wchar *str)
4322Return a scheme string from the null-terminated C string @var{str},
4323which is ISO-8859-1-, UTF-8-, or UTF-32-encoded. These functions should
4324be used to convert hard-coded C string constants into Scheme strings.
4325@end deftypefn
cf313a94
MG
4326
4327@deftypefn {C Function} SCM scm_from_latin1_stringn (const char *str, size_t len)
647dc1ac
LC
4328@deftypefnx {C Function} SCM scm_from_utf8_stringn (const char *str, size_t len)
4329@deftypefnx {C Function} SCM scm_from_utf32_stringn (const scm_t_wchar *str, size_t len)
4330Return a scheme string from C string @var{str}, which is ISO-8859-1-,
4331UTF-8-, or UTF-32-encoded, of length @var{len}. @var{len} is the number
4332of bytes pointed to by @var{str} for @code{scm_from_latin1_stringn} and
4333@code{scm_from_utf8_stringn}; it is the number of elements (code points)
4334in @var{str} in the case of @code{scm_from_utf32_stringn}.
cf313a94
MG
4335@end deftypefn
4336
647dc1ac
LC
4337@deftypefn {C function} char *scm_to_latin1_stringn (SCM str, size_t *lenp)
4338@deftypefnx {C function} char *scm_to_utf8_stringn (SCM str, size_t *lenp)
4339@deftypefnx {C function} scm_t_wchar *scm_to_utf32_stringn (SCM str, size_t *lenp)
4340Return a newly allocated, ISO-8859-1-, UTF-8-, or UTF-32-encoded C string
4341from Scheme string @var{str}. An error is thrown when @var{str}
68a78738 4342cannot be converted to the specified encoding. If @var{lenp} is
cf313a94
MG
4343@code{NULL}, the returned C string will be null terminated, and an error
4344will be thrown if the C string would otherwise contain null
68a78738
MW
4345characters. If @var{lenp} is not @code{NULL}, the string is not null terminated,
4346and the length of the returned string is returned in @var{lenp}. The length
4347returned is the number of bytes for @code{scm_to_latin1_stringn} and
4348@code{scm_to_utf8_stringn}; it is the number of elements (code points)
4349for @code{scm_to_utf32_stringn}.
cf313a94 4350@end deftypefn
07d83abe 4351
5b6b22e8
MG
4352@node String Internals
4353@subsubsection String Internals
4354
4355Guile stores each string in memory as a contiguous array of Unicode code
4356points along with an associated set of attributes. If all of the code
4357points of a string have an integer range between 0 and 255 inclusive,
4358the code point array is stored as one byte per code point: it is stored
4359as an ISO-8859-1 (aka Latin-1) string. If any of the code points of the
4360string has an integer value greater that 255, the code point array is
4361stored as four bytes per code point: it is stored as a UTF-32 string.
4362
4363Conversion between the one-byte-per-code-point and
4364four-bytes-per-code-point representations happens automatically as
4365necessary.
4366
4367No API is provided to set the internal representation of strings;
4368however, there are pair of procedures available to query it. These are
4369debugging procedures. Using them in production code is discouraged,
4370since the details of Guile's internal representation of strings may
4371change from release to release.
4372
4373@deffn {Scheme Procedure} string-bytes-per-char str
4374@deffnx {C Function} scm_string_bytes_per_char (str)
4375Return the number of bytes used to encode a Unicode code point in string
4376@var{str}. The result is one or four.
4377@end deffn
4378
4379@deffn {Scheme Procedure} %string-dump str
4380@deffnx {C Function} scm_sys_string_dump (str)
4381Returns an association list containing debugging information for
4382@var{str}. The association list has the following entries.
4383@table @code
4384
4385@item string
4386The string itself.
4387
4388@item start
4389The start index of the string into its stringbuf
4390
4391@item length
4392The length of the string
4393
4394@item shared
4395If this string is a substring, it returns its
4396parent string. Otherwise, it returns @code{#f}
4397
4398@item read-only
4399@code{#t} if the string is read-only
4400
4401@item stringbuf-chars
4402A new string containing this string's stringbuf's characters
4403
4404@item stringbuf-length
4405The number of characters in this stringbuf
4406
4407@item stringbuf-shared
4408@code{#t} if this stringbuf is shared
4409
4410@item stringbuf-wide
4411@code{#t} if this stringbuf's characters are stored in a 32-bit buffer,
4412or @code{#f} if they are stored in an 8-bit buffer
4413@end table
4414@end deffn
4415
4416
b242715b
LC
4417@node Bytevectors
4418@subsection Bytevectors
4419
4420@cindex bytevector
4421@cindex R6RS
4422
07d22c02 4423A @dfn{bytevector} is a raw bit string. The @code{(rnrs bytevectors)}
b242715b 4424module provides the programming interface specified by the
5fa2deb3 4425@uref{http://www.r6rs.org/, Revised^6 Report on the Algorithmic Language
b242715b
LC
4426Scheme (R6RS)}. It contains procedures to manipulate bytevectors and
4427interpret their contents in a number of ways: bytevector contents can be
4428accessed as signed or unsigned integer of various sizes and endianness,
4429as IEEE-754 floating point numbers, or as strings. It is a useful tool
4430to encode and decode binary data.
4431
4432The R6RS (Section 4.3.4) specifies an external representation for
4433bytevectors, whereby the octets (integers in the range 0--255) contained
4434in the bytevector are represented as a list prefixed by @code{#vu8}:
4435
4436@lisp
4437#vu8(1 53 204)
4438@end lisp
4439
4440denotes a 3-byte bytevector containing the octets 1, 53, and 204. Like
4441string literals, booleans, etc., bytevectors are ``self-quoting'', i.e.,
4442they do not need to be quoted:
4443
4444@lisp
4445#vu8(1 53 204)
4446@result{} #vu8(1 53 204)
4447@end lisp
4448
4449Bytevectors can be used with the binary input/output primitives of the
4450R6RS (@pxref{R6RS I/O Ports}).
4451
4452@menu
4453* Bytevector Endianness:: Dealing with byte order.
4454* Bytevector Manipulation:: Creating, copying, manipulating bytevectors.
4455* Bytevectors as Integers:: Interpreting bytes as integers.
4456* Bytevectors and Integer Lists:: Converting to/from an integer list.
4457* Bytevectors as Floats:: Interpreting bytes as real numbers.
4458* Bytevectors as Strings:: Interpreting bytes as Unicode strings.
438974d0 4459* Bytevectors as Generalized Vectors:: Guile extension to the bytevector API.
27219b32 4460* Bytevectors as Uniform Vectors:: Bytevectors and SRFI-4.
b242715b
LC
4461@end menu
4462
4463@node Bytevector Endianness
4464@subsubsection Endianness
4465
4466@cindex endianness
4467@cindex byte order
4468@cindex word order
4469
4470Some of the following procedures take an @var{endianness} parameter.
5fa2deb3
AW
4471The @dfn{endianness} is defined as the order of bytes in multi-byte
4472numbers: numbers encoded in @dfn{big endian} have their most
4473significant bytes written first, whereas numbers encoded in
4474@dfn{little endian} have their least significant bytes
4475first@footnote{Big-endian and little-endian are the most common
4476``endiannesses'', but others do exist. For instance, the GNU MP
4477library allows @dfn{word order} to be specified independently of
4478@dfn{byte order} (@pxref{Integer Import and Export,,, gmp, The GNU
4479Multiple Precision Arithmetic Library Manual}).}.
4480
4481Little-endian is the native endianness of the IA32 architecture and
4482its derivatives, while big-endian is native to SPARC and PowerPC,
4483among others. The @code{native-endianness} procedure returns the
4484native endianness of the machine it runs on.
b242715b
LC
4485
4486@deffn {Scheme Procedure} native-endianness
4487@deffnx {C Function} scm_native_endianness ()
4488Return a value denoting the native endianness of the host machine.
4489@end deffn
4490
4491@deffn {Scheme Macro} endianness symbol
4492Return an object denoting the endianness specified by @var{symbol}. If
5fa2deb3
AW
4493@var{symbol} is neither @code{big} nor @code{little} then an error is
4494raised at expand-time.
b242715b
LC
4495@end deffn
4496
4497@defvr {C Variable} scm_endianness_big
4498@defvrx {C Variable} scm_endianness_little
5fa2deb3 4499The objects denoting big- and little-endianness, respectively.
b242715b
LC
4500@end defvr
4501
4502
4503@node Bytevector Manipulation
4504@subsubsection Manipulating Bytevectors
4505
4506Bytevectors can be created, copied, and analyzed with the following
404bb5f8 4507procedures and C functions.
b242715b
LC
4508
4509@deffn {Scheme Procedure} make-bytevector len [fill]
4510@deffnx {C Function} scm_make_bytevector (len, fill)
2d34e924 4511@deffnx {C Function} scm_c_make_bytevector (size_t len)
b242715b 4512Return a new bytevector of @var{len} bytes. Optionally, if @var{fill}
d64fc8b0
LC
4513is given, fill it with @var{fill}; @var{fill} must be in the range
4514[-128,255].
b242715b
LC
4515@end deffn
4516
4517@deffn {Scheme Procedure} bytevector? obj
4518@deffnx {C Function} scm_bytevector_p (obj)
4519Return true if @var{obj} is a bytevector.
4520@end deffn
4521
404bb5f8
LC
4522@deftypefn {C Function} int scm_is_bytevector (SCM obj)
4523Equivalent to @code{scm_is_true (scm_bytevector_p (obj))}.
4524@end deftypefn
4525
b242715b
LC
4526@deffn {Scheme Procedure} bytevector-length bv
4527@deffnx {C Function} scm_bytevector_length (bv)
4528Return the length in bytes of bytevector @var{bv}.
4529@end deffn
4530
404bb5f8
LC
4531@deftypefn {C Function} size_t scm_c_bytevector_length (SCM bv)
4532Likewise, return the length in bytes of bytevector @var{bv}.
4533@end deftypefn
4534
b242715b
LC
4535@deffn {Scheme Procedure} bytevector=? bv1 bv2
4536@deffnx {C Function} scm_bytevector_eq_p (bv1, bv2)
4537Return is @var{bv1} equals to @var{bv2}---i.e., if they have the same
4538length and contents.
4539@end deffn
4540
4541@deffn {Scheme Procedure} bytevector-fill! bv fill
4542@deffnx {C Function} scm_bytevector_fill_x (bv, fill)
4543Fill bytevector @var{bv} with @var{fill}, a byte.
4544@end deffn
4545
4546@deffn {Scheme Procedure} bytevector-copy! source source-start target target-start len
4547@deffnx {C Function} scm_bytevector_copy_x (source, source_start, target, target_start, len)
4548Copy @var{len} bytes from @var{source} into @var{target}, starting
4549reading from @var{source-start} (a positive index within @var{source})
80719649
LC
4550and start writing at @var{target-start}. It is permitted for the
4551@var{source} and @var{target} regions to overlap.
b242715b
LC
4552@end deffn
4553
4554@deffn {Scheme Procedure} bytevector-copy bv
4555@deffnx {C Function} scm_bytevector_copy (bv)
4556Return a newly allocated copy of @var{bv}.
4557@end deffn
4558
404bb5f8
LC
4559@deftypefn {C Function} scm_t_uint8 scm_c_bytevector_ref (SCM bv, size_t index)
4560Return the byte at @var{index} in bytevector @var{bv}.
4561@end deftypefn
4562
4563@deftypefn {C Function} void scm_c_bytevector_set_x (SCM bv, size_t index, scm_t_uint8 value)
4564Set the byte at @var{index} in @var{bv} to @var{value}.
4565@end deftypefn
4566
b242715b
LC
4567Low-level C macros are available. They do not perform any
4568type-checking; as such they should be used with care.
4569
4570@deftypefn {C Macro} size_t SCM_BYTEVECTOR_LENGTH (bv)
4571Return the length in bytes of bytevector @var{bv}.
4572@end deftypefn
4573
4574@deftypefn {C Macro} {signed char *} SCM_BYTEVECTOR_CONTENTS (bv)
4575Return a pointer to the contents of bytevector @var{bv}.
4576@end deftypefn
4577
4578
4579@node Bytevectors as Integers
4580@subsubsection Interpreting Bytevector Contents as Integers
4581
4582The contents of a bytevector can be interpreted as a sequence of
4583integers of any given size, sign, and endianness.
4584
4585@lisp
4586(let ((bv (make-bytevector 4)))
4587 (bytevector-u8-set! bv 0 #x12)
4588 (bytevector-u8-set! bv 1 #x34)
4589 (bytevector-u8-set! bv 2 #x56)
4590 (bytevector-u8-set! bv 3 #x78)
4591
4592 (map (lambda (number)
4593 (number->string number 16))
4594 (list (bytevector-u8-ref bv 0)
4595 (bytevector-u16-ref bv 0 (endianness big))
4596 (bytevector-u32-ref bv 0 (endianness little)))))
4597
4598@result{} ("12" "1234" "78563412")
4599@end lisp
4600
4601The most generic procedures to interpret bytevector contents as integers
4602are described below.
4603
4604@deffn {Scheme Procedure} bytevector-uint-ref bv index endianness size
b242715b 4605@deffnx {C Function} scm_bytevector_uint_ref (bv, index, endianness, size)
4827afeb
NJ
4606Return the @var{size}-byte long unsigned integer at index @var{index} in
4607@var{bv}, decoded according to @var{endianness}.
4608@end deffn
4609
4610@deffn {Scheme Procedure} bytevector-sint-ref bv index endianness size
b242715b 4611@deffnx {C Function} scm_bytevector_sint_ref (bv, index, endianness, size)
4827afeb
NJ
4612Return the @var{size}-byte long signed integer at index @var{index} in
4613@var{bv}, decoded according to @var{endianness}.
b242715b
LC
4614@end deffn
4615
4616@deffn {Scheme Procedure} bytevector-uint-set! bv index value endianness size
b242715b 4617@deffnx {C Function} scm_bytevector_uint_set_x (bv, index, value, endianness, size)
4827afeb
NJ
4618Set the @var{size}-byte long unsigned integer at @var{index} to
4619@var{value}, encoded according to @var{endianness}.
4620@end deffn
4621
4622@deffn {Scheme Procedure} bytevector-sint-set! bv index value endianness size
b242715b 4623@deffnx {C Function} scm_bytevector_sint_set_x (bv, index, value, endianness, size)
4827afeb
NJ
4624Set the @var{size}-byte long signed integer at @var{index} to
4625@var{value}, encoded according to @var{endianness}.
b242715b
LC
4626@end deffn
4627
4628The following procedures are similar to the ones above, but specialized
4629to a given integer size:
4630
4631@deffn {Scheme Procedure} bytevector-u8-ref bv index
4632@deffnx {Scheme Procedure} bytevector-s8-ref bv index
4633@deffnx {Scheme Procedure} bytevector-u16-ref bv index endianness
4634@deffnx {Scheme Procedure} bytevector-s16-ref bv index endianness
4635@deffnx {Scheme Procedure} bytevector-u32-ref bv index endianness
4636@deffnx {Scheme Procedure} bytevector-s32-ref bv index endianness
4637@deffnx {Scheme Procedure} bytevector-u64-ref bv index endianness
4638@deffnx {Scheme Procedure} bytevector-s64-ref bv index endianness
4639@deffnx {C Function} scm_bytevector_u8_ref (bv, index)
4640@deffnx {C Function} scm_bytevector_s8_ref (bv, index)
4641@deffnx {C Function} scm_bytevector_u16_ref (bv, index, endianness)
4642@deffnx {C Function} scm_bytevector_s16_ref (bv, index, endianness)
4643@deffnx {C Function} scm_bytevector_u32_ref (bv, index, endianness)
4644@deffnx {C Function} scm_bytevector_s32_ref (bv, index, endianness)
4645@deffnx {C Function} scm_bytevector_u64_ref (bv, index, endianness)
4646@deffnx {C Function} scm_bytevector_s64_ref (bv, index, endianness)
4647Return the unsigned @var{n}-bit (signed) integer (where @var{n} is 8,
464816, 32 or 64) from @var{bv} at @var{index}, decoded according to
4649@var{endianness}.
4650@end deffn
4651
4652@deffn {Scheme Procedure} bytevector-u8-set! bv index value
4653@deffnx {Scheme Procedure} bytevector-s8-set! bv index value
4654@deffnx {Scheme Procedure} bytevector-u16-set! bv index value endianness
4655@deffnx {Scheme Procedure} bytevector-s16-set! bv index value endianness
4656@deffnx {Scheme Procedure} bytevector-u32-set! bv index value endianness
4657@deffnx {Scheme Procedure} bytevector-s32-set! bv index value endianness
4658@deffnx {Scheme Procedure} bytevector-u64-set! bv index value endianness
4659@deffnx {Scheme Procedure} bytevector-s64-set! bv index value endianness
4660@deffnx {C Function} scm_bytevector_u8_set_x (bv, index, value)
4661@deffnx {C Function} scm_bytevector_s8_set_x (bv, index, value)
4662@deffnx {C Function} scm_bytevector_u16_set_x (bv, index, value, endianness)
4663@deffnx {C Function} scm_bytevector_s16_set_x (bv, index, value, endianness)
4664@deffnx {C Function} scm_bytevector_u32_set_x (bv, index, value, endianness)
4665@deffnx {C Function} scm_bytevector_s32_set_x (bv, index, value, endianness)
4666@deffnx {C Function} scm_bytevector_u64_set_x (bv, index, value, endianness)
4667@deffnx {C Function} scm_bytevector_s64_set_x (bv, index, value, endianness)
4668Store @var{value} as an @var{n}-bit (signed) integer (where @var{n} is
46698, 16, 32 or 64) in @var{bv} at @var{index}, encoded according to
4670@var{endianness}.
4671@end deffn
4672
4673Finally, a variant specialized for the host's endianness is available
4674for each of these functions (with the exception of the @code{u8}
4675accessors, for obvious reasons):
4676
4677@deffn {Scheme Procedure} bytevector-u16-native-ref bv index
4678@deffnx {Scheme Procedure} bytevector-s16-native-ref bv index
4679@deffnx {Scheme Procedure} bytevector-u32-native-ref bv index
4680@deffnx {Scheme Procedure} bytevector-s32-native-ref bv index
4681@deffnx {Scheme Procedure} bytevector-u64-native-ref bv index
4682@deffnx {Scheme Procedure} bytevector-s64-native-ref bv index
4683@deffnx {C Function} scm_bytevector_u16_native_ref (bv, index)
4684@deffnx {C Function} scm_bytevector_s16_native_ref (bv, index)
4685@deffnx {C Function} scm_bytevector_u32_native_ref (bv, index)
4686@deffnx {C Function} scm_bytevector_s32_native_ref (bv, index)
4687@deffnx {C Function} scm_bytevector_u64_native_ref (bv, index)
4688@deffnx {C Function} scm_bytevector_s64_native_ref (bv, index)
4689Return the unsigned @var{n}-bit (signed) integer (where @var{n} is 8,
469016, 32 or 64) from @var{bv} at @var{index}, decoded according to the
4691host's native endianness.
4692@end deffn
4693
4694@deffn {Scheme Procedure} bytevector-u16-native-set! bv index value
4695@deffnx {Scheme Procedure} bytevector-s16-native-set! bv index value
4696@deffnx {Scheme Procedure} bytevector-u32-native-set! bv index value
4697@deffnx {Scheme Procedure} bytevector-s32-native-set! bv index value
4698@deffnx {Scheme Procedure} bytevector-u64-native-set! bv index value
4699@deffnx {Scheme Procedure} bytevector-s64-native-set! bv index value
4700@deffnx {C Function} scm_bytevector_u16_native_set_x (bv, index, value)
4701@deffnx {C Function} scm_bytevector_s16_native_set_x (bv, index, value)
4702@deffnx {C Function} scm_bytevector_u32_native_set_x (bv, index, value)
4703@deffnx {C Function} scm_bytevector_s32_native_set_x (bv, index, value)
4704@deffnx {C Function} scm_bytevector_u64_native_set_x (bv, index, value)
4705@deffnx {C Function} scm_bytevector_s64_native_set_x (bv, index, value)
4706Store @var{value} as an @var{n}-bit (signed) integer (where @var{n} is
47078, 16, 32 or 64) in @var{bv} at @var{index}, encoded according to the
4708host's native endianness.
4709@end deffn
4710
4711
4712@node Bytevectors and Integer Lists
4713@subsubsection Converting Bytevectors to/from Integer Lists
4714
4715Bytevector contents can readily be converted to/from lists of signed or
4716unsigned integers:
4717
4718@lisp
4719(bytevector->sint-list (u8-list->bytevector (make-list 4 255))
4720 (endianness little) 2)
4721@result{} (-1 -1)
4722@end lisp
4723
4724@deffn {Scheme Procedure} bytevector->u8-list bv
4725@deffnx {C Function} scm_bytevector_to_u8_list (bv)
4726Return a newly allocated list of unsigned 8-bit integers from the
4727contents of @var{bv}.
4728@end deffn
4729
4730@deffn {Scheme Procedure} u8-list->bytevector lst
4731@deffnx {C Function} scm_u8_list_to_bytevector (lst)
4732Return a newly allocated bytevector consisting of the unsigned 8-bit
4733integers listed in @var{lst}.
4734@end deffn
4735
4736@deffn {Scheme Procedure} bytevector->uint-list bv endianness size
b242715b 4737@deffnx {C Function} scm_bytevector_to_uint_list (bv, endianness, size)
4827afeb
NJ
4738Return a list of unsigned integers of @var{size} bytes representing the
4739contents of @var{bv}, decoded according to @var{endianness}.
4740@end deffn
4741
4742@deffn {Scheme Procedure} bytevector->sint-list bv endianness size
b242715b 4743@deffnx {C Function} scm_bytevector_to_sint_list (bv, endianness, size)
4827afeb
NJ
4744Return a list of signed integers of @var{size} bytes representing the
4745contents of @var{bv}, decoded according to @var{endianness}.
b242715b
LC
4746@end deffn
4747
4748@deffn {Scheme Procedure} uint-list->bytevector lst endianness size
b242715b 4749@deffnx {C Function} scm_uint_list_to_bytevector (lst, endianness, size)
4827afeb
NJ
4750Return a new bytevector containing the unsigned integers listed in
4751@var{lst} and encoded on @var{size} bytes according to @var{endianness}.
4752@end deffn
4753
4754@deffn {Scheme Procedure} sint-list->bytevector lst endianness size
b242715b 4755@deffnx {C Function} scm_sint_list_to_bytevector (lst, endianness, size)
4827afeb
NJ
4756Return a new bytevector containing the signed integers listed in
4757@var{lst} and encoded on @var{size} bytes according to @var{endianness}.
b242715b
LC
4758@end deffn
4759
4760@node Bytevectors as Floats
4761@subsubsection Interpreting Bytevector Contents as Floating Point Numbers
4762
4763@cindex IEEE-754 floating point numbers
4764
4765Bytevector contents can also be accessed as IEEE-754 single- or
4766double-precision floating point numbers (respectively 32 and 64-bit
4767long) using the procedures described here.
4768
4769@deffn {Scheme Procedure} bytevector-ieee-single-ref bv index endianness
4770@deffnx {Scheme Procedure} bytevector-ieee-double-ref bv index endianness
4771@deffnx {C Function} scm_bytevector_ieee_single_ref (bv, index, endianness)
4772@deffnx {C Function} scm_bytevector_ieee_double_ref (bv, index, endianness)
4773Return the IEEE-754 single-precision floating point number from @var{bv}
4774at @var{index} according to @var{endianness}.
4775@end deffn
4776
4777@deffn {Scheme Procedure} bytevector-ieee-single-set! bv index value endianness
4778@deffnx {Scheme Procedure} bytevector-ieee-double-set! bv index value endianness
4779@deffnx {C Function} scm_bytevector_ieee_single_set_x (bv, index, value, endianness)
4780@deffnx {C Function} scm_bytevector_ieee_double_set_x (bv, index, value, endianness)
4781Store real number @var{value} in @var{bv} at @var{index} according to
4782@var{endianness}.
4783@end deffn
4784
4785Specialized procedures are also available:
4786
4787@deffn {Scheme Procedure} bytevector-ieee-single-native-ref bv index
4788@deffnx {Scheme Procedure} bytevector-ieee-double-native-ref bv index
4789@deffnx {C Function} scm_bytevector_ieee_single_native_ref (bv, index)
4790@deffnx {C Function} scm_bytevector_ieee_double_native_ref (bv, index)
4791Return the IEEE-754 single-precision floating point number from @var{bv}
4792at @var{index} according to the host's native endianness.
4793@end deffn
4794
4795@deffn {Scheme Procedure} bytevector-ieee-single-native-set! bv index value
4796@deffnx {Scheme Procedure} bytevector-ieee-double-native-set! bv index value
4797@deffnx {C Function} scm_bytevector_ieee_single_native_set_x (bv, index, value)
4798@deffnx {C Function} scm_bytevector_ieee_double_native_set_x (bv, index, value)
4799Store real number @var{value} in @var{bv} at @var{index} according to
4800the host's native endianness.
4801@end deffn
4802
4803
4804@node Bytevectors as Strings
4805@subsubsection Interpreting Bytevector Contents as Unicode Strings
4806
4807@cindex Unicode string encoding
4808
4809Bytevector contents can also be interpreted as Unicode strings encoded
d3b5628c 4810in one of the most commonly available encoding formats.
b242715b
LC
4811
4812@lisp
4813(utf8->string (u8-list->bytevector '(99 97 102 101)))
4814@result{} "cafe"
4815
4816(string->utf8 "caf@'e") ;; SMALL LATIN LETTER E WITH ACUTE ACCENT
4817@result{} #vu8(99 97 102 195 169)
4818@end lisp
4819
4820@deffn {Scheme Procedure} string->utf8 str
524aa8ae
LC
4821@deffnx {Scheme Procedure} string->utf16 str [endianness]
4822@deffnx {Scheme Procedure} string->utf32 str [endianness]
b242715b 4823@deffnx {C Function} scm_string_to_utf8 (str)
524aa8ae
LC
4824@deffnx {C Function} scm_string_to_utf16 (str, endianness)
4825@deffnx {C Function} scm_string_to_utf32 (str, endianness)
b242715b 4826Return a newly allocated bytevector that contains the UTF-8, UTF-16, or
524aa8ae
LC
4827UTF-32 (aka. UCS-4) encoding of @var{str}. For UTF-16 and UTF-32,
4828@var{endianness} should be the symbol @code{big} or @code{little}; when omitted,
4829it defaults to big endian.
b242715b
LC
4830@end deffn
4831
4832@deffn {Scheme Procedure} utf8->string utf
524aa8ae
LC
4833@deffnx {Scheme Procedure} utf16->string utf [endianness]
4834@deffnx {Scheme Procedure} utf32->string utf [endianness]
b242715b 4835@deffnx {C Function} scm_utf8_to_string (utf)
524aa8ae
LC
4836@deffnx {C Function} scm_utf16_to_string (utf, endianness)
4837@deffnx {C Function} scm_utf32_to_string (utf, endianness)
b242715b 4838Return a newly allocated string that contains from the UTF-8-, UTF-16-,
524aa8ae
LC
4839or UTF-32-decoded contents of bytevector @var{utf}. For UTF-16 and UTF-32,
4840@var{endianness} should be the symbol @code{big} or @code{little}; when omitted,
4841it defaults to big endian.
b242715b
LC
4842@end deffn
4843
438974d0
LC
4844@node Bytevectors as Generalized Vectors
4845@subsubsection Accessing Bytevectors with the Generalized Vector API
4846
4847As an extension to the R6RS, Guile allows bytevectors to be manipulated
4848with the @dfn{generalized vector} procedures (@pxref{Generalized
4849Vectors}). This also allows bytevectors to be accessed using the
4850generic @dfn{array} procedures (@pxref{Array Procedures}). When using
4851these APIs, bytes are accessed one at a time as 8-bit unsigned integers:
4852
4853@example
4854(define bv #vu8(0 1 2 3))
4855
4856(generalized-vector? bv)
4857@result{} #t
4858
4859(generalized-vector-ref bv 2)
4860@result{} 2
4861
4862(generalized-vector-set! bv 2 77)
4863(array-ref bv 2)
4864@result{} 77
4865
4866(array-type bv)
4867@result{} vu8
4868@end example
4869
b242715b 4870
27219b32
AW
4871@node Bytevectors as Uniform Vectors
4872@subsubsection Accessing Bytevectors with the SRFI-4 API
4873
4874Bytevectors may also be accessed with the SRFI-4 API. @xref{SRFI-4 and
4875Bytevectors}, for more information.
4876
4877
07d83abe
MV
4878@node Symbols
4879@subsection Symbols
4880@tpindex Symbols
4881
4882Symbols in Scheme are widely used in three ways: as items of discrete
4883data, as lookup keys for alists and hash tables, and to denote variable
4884references.
4885
4886A @dfn{symbol} is similar to a string in that it is defined by a
4887sequence of characters. The sequence of characters is known as the
4888symbol's @dfn{name}. In the usual case --- that is, where the symbol's
4889name doesn't include any characters that could be confused with other
4890elements of Scheme syntax --- a symbol is written in a Scheme program by
4891writing the sequence of characters that make up the name, @emph{without}
4892any quotation marks or other special syntax. For example, the symbol
4893whose name is ``multiply-by-2'' is written, simply:
4894
4895@lisp
4896multiply-by-2
4897@end lisp
4898
4899Notice how this differs from a @emph{string} with contents
4900``multiply-by-2'', which is written with double quotation marks, like
4901this:
4902
4903@lisp
4904"multiply-by-2"
4905@end lisp
4906
4907Looking beyond how they are written, symbols are different from strings
4908in two important respects.
4909
4910The first important difference is uniqueness. If the same-looking
4911string is read twice from two different places in a program, the result
4912is two @emph{different} string objects whose contents just happen to be
4913the same. If, on the other hand, the same-looking symbol is read twice
4914from two different places in a program, the result is the @emph{same}
4915symbol object both times.
4916
4917Given two read symbols, you can use @code{eq?} to test whether they are
4918the same (that is, have the same name). @code{eq?} is the most
4919efficient comparison operator in Scheme, and comparing two symbols like
4920this is as fast as comparing, for example, two numbers. Given two
4921strings, on the other hand, you must use @code{equal?} or
4922@code{string=?}, which are much slower comparison operators, to
4923determine whether the strings have the same contents.
4924
4925@lisp
4926(define sym1 (quote hello))
4927(define sym2 (quote hello))
4928(eq? sym1 sym2) @result{} #t
4929
4930(define str1 "hello")
4931(define str2 "hello")
4932(eq? str1 str2) @result{} #f
4933(equal? str1 str2) @result{} #t
4934@end lisp
4935
4936The second important difference is that symbols, unlike strings, are not
4937self-evaluating. This is why we need the @code{(quote @dots{})}s in the
4938example above: @code{(quote hello)} evaluates to the symbol named
4939"hello" itself, whereas an unquoted @code{hello} is @emph{read} as the
4940symbol named "hello" and evaluated as a variable reference @dots{} about
4941which more below (@pxref{Symbol Variables}).
4942
4943@menu
4944* Symbol Data:: Symbols as discrete data.
4945* Symbol Keys:: Symbols as lookup keys.
4946* Symbol Variables:: Symbols as denoting variables.
4947* Symbol Primitives:: Operations related to symbols.
4948* Symbol Props:: Function slots and property lists.
4949* Symbol Read Syntax:: Extended read syntax for symbols.
4950* Symbol Uninterned:: Uninterned symbols.
4951@end menu
4952
4953
4954@node Symbol Data
4955@subsubsection Symbols as Discrete Data
4956
4957Numbers and symbols are similar to the extent that they both lend
4958themselves to @code{eq?} comparison. But symbols are more descriptive
4959than numbers, because a symbol's name can be used directly to describe
4960the concept for which that symbol stands.
4961
4962For example, imagine that you need to represent some colours in a
4963computer program. Using numbers, you would have to choose arbitrarily
4964some mapping between numbers and colours, and then take care to use that
4965mapping consistently:
4966
4967@lisp
4968;; 1=red, 2=green, 3=purple
4969
4970(if (eq? (colour-of car) 1)
4971 ...)
4972@end lisp
4973
4974@noindent
4975You can make the mapping more explicit and the code more readable by
4976defining constants:
4977
4978@lisp
4979(define red 1)
4980(define green 2)
4981(define purple 3)
4982
4983(if (eq? (colour-of car) red)
4984 ...)
4985@end lisp
4986
4987@noindent
4988But the simplest and clearest approach is not to use numbers at all, but
4989symbols whose names specify the colours that they refer to:
4990
4991@lisp
4992(if (eq? (colour-of car) 'red)
4993 ...)
4994@end lisp
4995
4996The descriptive advantages of symbols over numbers increase as the set
4997of concepts that you want to describe grows. Suppose that a car object
4998can have other properties as well, such as whether it has or uses:
4999
5000@itemize @bullet
5001@item
5002automatic or manual transmission
5003@item
5004leaded or unleaded fuel
5005@item
5006power steering (or not).
5007@end itemize
5008
5009@noindent
5010Then a car's combined property set could be naturally represented and
5011manipulated as a list of symbols:
5012
5013@lisp
5014(properties-of car1)
5015@result{}
5016(red manual unleaded power-steering)
5017
5018(if (memq 'power-steering (properties-of car1))
5019 (display "Unfit people can drive this car.\n")
5020 (display "You'll need strong arms to drive this car!\n"))
5021@print{}
5022Unfit people can drive this car.
5023@end lisp
5024
5025Remember, the fundamental property of symbols that we are relying on
5026here is that an occurrence of @code{'red} in one part of a program is an
5027@emph{indistinguishable} symbol from an occurrence of @code{'red} in
5028another part of a program; this means that symbols can usefully be
5029compared using @code{eq?}. At the same time, symbols have naturally
5030descriptive names. This combination of efficiency and descriptive power
5031makes them ideal for use as discrete data.
5032
5033
5034@node Symbol Keys
5035@subsubsection Symbols as Lookup Keys
5036
5037Given their efficiency and descriptive power, it is natural to use
5038symbols as the keys in an association list or hash table.
5039
5040To illustrate this, consider a more structured representation of the car
5041properties example from the preceding subsection. Rather than
5042mixing all the properties up together in a flat list, we could use an
5043association list like this:
5044
5045@lisp
5046(define car1-properties '((colour . red)
5047 (transmission . manual)
5048 (fuel . unleaded)
5049 (steering . power-assisted)))
5050@end lisp
5051
5052Notice how this structure is more explicit and extensible than the flat
5053list. For example it makes clear that @code{manual} refers to the
5054transmission rather than, say, the windows or the locking of the car.
5055It also allows further properties to use the same symbols among their
5056possible values without becoming ambiguous:
5057
5058@lisp
5059(define car1-properties '((colour . red)
5060 (transmission . manual)
5061 (fuel . unleaded)
5062 (steering . power-assisted)
5063 (seat-colour . red)
5064 (locking . manual)))
5065@end lisp
5066
5067With a representation like this, it is easy to use the efficient
5068@code{assq-XXX} family of procedures (@pxref{Association Lists}) to
5069extract or change individual pieces of information:
5070
5071@lisp
5072(assq-ref car1-properties 'fuel) @result{} unleaded
5073(assq-ref car1-properties 'transmission) @result{} manual
5074
5075(assq-set! car1-properties 'seat-colour 'black)
5076@result{}
5077((colour . red)
5078 (transmission . manual)
5079 (fuel . unleaded)
5080 (steering . power-assisted)
5081 (seat-colour . black)
5082 (locking . manual)))
5083@end lisp
5084
5085Hash tables also have keys, and exactly the same arguments apply to the
5086use of symbols in hash tables as in association lists. The hash value
5087that Guile uses to decide where to add a symbol-keyed entry to a hash
5088table can be obtained by calling the @code{symbol-hash} procedure:
5089
5090@deffn {Scheme Procedure} symbol-hash symbol
5091@deffnx {C Function} scm_symbol_hash (symbol)
5092Return a hash value for @var{symbol}.
5093@end deffn
5094
5095See @ref{Hash Tables} for information about hash tables in general, and
5096for why you might choose to use a hash table rather than an association
5097list.
5098
5099
5100@node Symbol Variables
5101@subsubsection Symbols as Denoting Variables
5102
5103When an unquoted symbol in a Scheme program is evaluated, it is
5104interpreted as a variable reference, and the result of the evaluation is
5105the appropriate variable's value.
5106
5107For example, when the expression @code{(string-length "abcd")} is read
5108and evaluated, the sequence of characters @code{string-length} is read
5109as the symbol whose name is "string-length". This symbol is associated
5110with a variable whose value is the procedure that implements string
5111length calculation. Therefore evaluation of the @code{string-length}
5112symbol results in that procedure.
5113
5114The details of the connection between an unquoted symbol and the
5115variable to which it refers are explained elsewhere. See @ref{Binding
5116Constructs}, for how associations between symbols and variables are
5117created, and @ref{Modules}, for how those associations are affected by
5118Guile's module system.
5119
5120
5121@node Symbol Primitives
5122@subsubsection Operations Related to Symbols
5123
5124Given any Scheme value, you can determine whether it is a symbol using
5125the @code{symbol?} primitive:
5126
5127@rnindex symbol?
5128@deffn {Scheme Procedure} symbol? obj
5129@deffnx {C Function} scm_symbol_p (obj)
5130Return @code{#t} if @var{obj} is a symbol, otherwise return
5131@code{#f}.
5132@end deffn
5133
c9dc8c6c
MV
5134@deftypefn {C Function} int scm_is_symbol (SCM val)
5135Equivalent to @code{scm_is_true (scm_symbol_p (val))}.
5136@end deftypefn
5137
07d83abe
MV
5138Once you know that you have a symbol, you can obtain its name as a
5139string by calling @code{symbol->string}. Note that Guile differs by
5140default from R5RS on the details of @code{symbol->string} as regards
5141case-sensitivity:
5142
5143@rnindex symbol->string
5144@deffn {Scheme Procedure} symbol->string s
5145@deffnx {C Function} scm_symbol_to_string (s)
5146Return the name of symbol @var{s} as a string. By default, Guile reads
5147symbols case-sensitively, so the string returned will have the same case
5148variation as the sequence of characters that caused @var{s} to be
5149created.
5150
5151If Guile is set to read symbols case-insensitively (as specified by
5152R5RS), and @var{s} comes into being as part of a literal expression
5153(@pxref{Literal expressions,,,r5rs, The Revised^5 Report on Scheme}) or
5154by a call to the @code{read} or @code{string-ci->symbol} procedures,
5155Guile converts any alphabetic characters in the symbol's name to
5156lower case before creating the symbol object, so the string returned
5157here will be in lower case.
5158
5159If @var{s} was created by @code{string->symbol}, the case of characters
5160in the string returned will be the same as that in the string that was
5161passed to @code{string->symbol}, regardless of Guile's case-sensitivity
5162setting at the time @var{s} was created.
5163
5164It is an error to apply mutation procedures like @code{string-set!} to
5165strings returned by this procedure.
5166@end deffn
5167
5168Most symbols are created by writing them literally in code. However it
5169is also possible to create symbols programmatically using the following
c5fc8f8c
JG
5170procedures:
5171
5172@deffn {Scheme Procedure} symbol char@dots{}
5173@rnindex symbol
5174Return a newly allocated symbol made from the given character arguments.
5175
5176@example
5177(symbol #\x #\y #\z) @result{} xyz
5178@end example
5179@end deffn
5180
5181@deffn {Scheme Procedure} list->symbol lst
5182@rnindex list->symbol
5183Return a newly allocated symbol made from a list of characters.
5184
5185@example
5186(list->symbol '(#\a #\b #\c)) @result{} abc
5187@end example
5188@end deffn
5189
5190@rnindex symbol-append
df0a1002 5191@deffn {Scheme Procedure} symbol-append arg @dots{}
c5fc8f8c 5192Return a newly allocated symbol whose characters form the
df0a1002 5193concatenation of the given symbols, @var{arg} @enddots{}.
c5fc8f8c
JG
5194
5195@example
5196(let ((h 'hello))
5197 (symbol-append h 'world))
5198@result{} helloworld
5199@end example
5200@end deffn
07d83abe
MV
5201
5202@rnindex string->symbol
5203@deffn {Scheme Procedure} string->symbol string
5204@deffnx {C Function} scm_string_to_symbol (string)
5205Return the symbol whose name is @var{string}. This procedure can create
5206symbols with names containing special characters or letters in the
5207non-standard case, but it is usually a bad idea to create such symbols
5208because in some implementations of Scheme they cannot be read as
5209themselves.
5210@end deffn
5211
5212@deffn {Scheme Procedure} string-ci->symbol str
5213@deffnx {C Function} scm_string_ci_to_symbol (str)
5214Return the symbol whose name is @var{str}. If Guile is currently
5215reading symbols case-insensitively, @var{str} is converted to lowercase
5216before the returned symbol is looked up or created.
5217@end deffn
5218
5219The following examples illustrate Guile's detailed behaviour as regards
5220the case-sensitivity of symbols:
5221
5222@lisp
5223(read-enable 'case-insensitive) ; R5RS compliant behaviour
5224
5225(symbol->string 'flying-fish) @result{} "flying-fish"
5226(symbol->string 'Martin) @result{} "martin"
5227(symbol->string
5228 (string->symbol "Malvina")) @result{} "Malvina"
5229
5230(eq? 'mISSISSIppi 'mississippi) @result{} #t
5231(string->symbol "mISSISSIppi") @result{} mISSISSIppi
5232(eq? 'bitBlt (string->symbol "bitBlt")) @result{} #f
5233(eq? 'LolliPop
5234 (string->symbol (symbol->string 'LolliPop))) @result{} #t
5235(string=? "K. Harper, M.D."
5236 (symbol->string
5237 (string->symbol "K. Harper, M.D."))) @result{} #t
5238
5239(read-disable 'case-insensitive) ; Guile default behaviour
5240
5241(symbol->string 'flying-fish) @result{} "flying-fish"
5242(symbol->string 'Martin) @result{} "Martin"
5243(symbol->string
5244 (string->symbol "Malvina")) @result{} "Malvina"
5245
5246(eq? 'mISSISSIppi 'mississippi) @result{} #f
5247(string->symbol "mISSISSIppi") @result{} mISSISSIppi
5248(eq? 'bitBlt (string->symbol "bitBlt")) @result{} #t
5249(eq? 'LolliPop
5250 (string->symbol (symbol->string 'LolliPop))) @result{} #t
5251(string=? "K. Harper, M.D."
5252 (symbol->string
5253 (string->symbol "K. Harper, M.D."))) @result{} #t
5254@end lisp
5255
5256From C, there are lower level functions that construct a Scheme symbol
c48c62d0
MV
5257from a C string in the current locale encoding.
5258
5259When you want to do more from C, you should convert between symbols
5260and strings using @code{scm_symbol_to_string} and
5261@code{scm_string_to_symbol} and work with the strings.
07d83abe 5262
ce3ce21c
MW
5263@deffn {C Function} scm_from_latin1_symbol (const char *name)
5264@deffnx {C Function} scm_from_utf8_symbol (const char *name)
5265Construct and return a Scheme symbol whose name is specified by the
5266null-terminated C string @var{name}. These are appropriate when
5267the C string is hard-coded in the source code.
5268@end deffn
5269
c48c62d0
MV
5270@deffn {C Function} scm_from_locale_symbol (const char *name)
5271@deffnx {C Function} scm_from_locale_symboln (const char *name, size_t len)
07d83abe 5272Construct and return a Scheme symbol whose name is specified by
c48c62d0
MV
5273@var{name}. For @code{scm_from_locale_symbol}, @var{name} must be null
5274terminated; for @code{scm_from_locale_symboln} the length of @var{name} is
07d83abe 5275specified explicitly by @var{len}.
ce3ce21c
MW
5276
5277Note that these functions should @emph{not} be used when @var{name} is a
5278C string constant, because there is no guarantee that the current locale
5279will match that of the source code. In such cases, use
5280@code{scm_from_latin1_symbol} or @code{scm_from_utf8_symbol}.
07d83abe
MV
5281@end deffn
5282
fd0a5bbc
HWN
5283@deftypefn {C Function} SCM scm_take_locale_symbol (char *str)
5284@deftypefnx {C Function} SCM scm_take_locale_symboln (char *str, size_t len)
5285Like @code{scm_from_locale_symbol} and @code{scm_from_locale_symboln},
5286respectively, but also frees @var{str} with @code{free} eventually.
5287Thus, you can use this function when you would free @var{str} anyway
5288immediately after creating the Scheme string. In certain cases, Guile
5289can then use @var{str} directly as its internal representation.
5290@end deftypefn
5291
071bb6a8
LC
5292The size of a symbol can also be obtained from C:
5293
5294@deftypefn {C Function} size_t scm_c_symbol_length (SCM sym)
5295Return the number of characters in @var{sym}.
5296@end deftypefn
fd0a5bbc 5297
07d83abe
MV
5298Finally, some applications, especially those that generate new Scheme
5299code dynamically, need to generate symbols for use in the generated
5300code. The @code{gensym} primitive meets this need:
5301
5302@deffn {Scheme Procedure} gensym [prefix]
5303@deffnx {C Function} scm_gensym (prefix)
5304Create a new symbol with a name constructed from a prefix and a counter
5305value. The string @var{prefix} can be specified as an optional
5306argument. Default prefix is @samp{@w{ g}}. The counter is increased by 1
5307at each call. There is no provision for resetting the counter.
5308@end deffn
5309
5310The symbols generated by @code{gensym} are @emph{likely} to be unique,
5311since their names begin with a space and it is only otherwise possible
5312to generate such symbols if a programmer goes out of their way to do
5313so. Uniqueness can be guaranteed by instead using uninterned symbols
5314(@pxref{Symbol Uninterned}), though they can't be usefully written out
5315and read back in.
5316
5317
5318@node Symbol Props
5319@subsubsection Function Slots and Property Lists
5320
5321In traditional Lisp dialects, symbols are often understood as having
5322three kinds of value at once:
5323
5324@itemize @bullet
5325@item
5326a @dfn{variable} value, which is used when the symbol appears in
5327code in a variable reference context
5328
5329@item
5330a @dfn{function} value, which is used when the symbol appears in
679cceed 5331code in a function name position (i.e.@: as the first element in an
07d83abe
MV
5332unquoted list)
5333
5334@item
5335a @dfn{property list} value, which is used when the symbol is given as
5336the first argument to Lisp's @code{put} or @code{get} functions.
5337@end itemize
5338
5339Although Scheme (as one of its simplifications with respect to Lisp)
5340does away with the distinction between variable and function namespaces,
5341Guile currently retains some elements of the traditional structure in
5342case they turn out to be useful when implementing translators for other
5343languages, in particular Emacs Lisp.
5344
ecb87335
RW
5345Specifically, Guile symbols have two extra slots, one for a symbol's
5346property list, and one for its ``function value.'' The following procedures
07d83abe
MV
5347are provided to access these slots.
5348
5349@deffn {Scheme Procedure} symbol-fref symbol
5350@deffnx {C Function} scm_symbol_fref (symbol)
5351Return the contents of @var{symbol}'s @dfn{function slot}.
5352@end deffn
5353
5354@deffn {Scheme Procedure} symbol-fset! symbol value
5355@deffnx {C Function} scm_symbol_fset_x (symbol, value)
5356Set the contents of @var{symbol}'s function slot to @var{value}.
5357@end deffn
5358
5359@deffn {Scheme Procedure} symbol-pref symbol
5360@deffnx {C Function} scm_symbol_pref (symbol)
5361Return the @dfn{property list} currently associated with @var{symbol}.
5362@end deffn
5363
5364@deffn {Scheme Procedure} symbol-pset! symbol value
5365@deffnx {C Function} scm_symbol_pset_x (symbol, value)
5366Set @var{symbol}'s property list to @var{value}.
5367@end deffn
5368
5369@deffn {Scheme Procedure} symbol-property sym prop
5370From @var{sym}'s property list, return the value for property
5371@var{prop}. The assumption is that @var{sym}'s property list is an
5372association list whose keys are distinguished from each other using
5373@code{equal?}; @var{prop} should be one of the keys in that list. If
5374the property list has no entry for @var{prop}, @code{symbol-property}
5375returns @code{#f}.
5376@end deffn
5377
5378@deffn {Scheme Procedure} set-symbol-property! sym prop val
5379In @var{sym}'s property list, set the value for property @var{prop} to
5380@var{val}, or add a new entry for @var{prop}, with value @var{val}, if
5381none already exists. For the structure of the property list, see
5382@code{symbol-property}.
5383@end deffn
5384
5385@deffn {Scheme Procedure} symbol-property-remove! sym prop
5386From @var{sym}'s property list, remove the entry for property
5387@var{prop}, if there is one. For the structure of the property list,
5388see @code{symbol-property}.
5389@end deffn
5390
5391Support for these extra slots may be removed in a future release, and it
4695789c
NJ
5392is probably better to avoid using them. For a more modern and Schemely
5393approach to properties, see @ref{Object Properties}.
07d83abe
MV
5394
5395
5396@node Symbol Read Syntax
5397@subsubsection Extended Read Syntax for Symbols
5398
5399The read syntax for a symbol is a sequence of letters, digits, and
5400@dfn{extended alphabetic characters}, beginning with a character that
5401cannot begin a number. In addition, the special cases of @code{+},
5402@code{-}, and @code{...} are read as symbols even though numbers can
5403begin with @code{+}, @code{-} or @code{.}.
5404
5405Extended alphabetic characters may be used within identifiers as if
5406they were letters. The set of extended alphabetic characters is:
5407
5408@example
5409! $ % & * + - . / : < = > ? @@ ^ _ ~
5410@end example
5411
5412In addition to the standard read syntax defined above (which is taken
5413from R5RS (@pxref{Formal syntax,,,r5rs,The Revised^5 Report on
5414Scheme})), Guile provides an extended symbol read syntax that allows the
5415inclusion of unusual characters such as space characters, newlines and
5416parentheses. If (for whatever reason) you need to write a symbol
5417containing characters not mentioned above, you can do so as follows.
5418
5419@itemize @bullet
5420@item
5421Begin the symbol with the characters @code{#@{},
5422
5423@item
5424write the characters of the symbol and
5425
5426@item
5427finish the symbol with the characters @code{@}#}.
5428@end itemize
5429
5430Here are a few examples of this form of read syntax. The first symbol
5431needs to use extended syntax because it contains a space character, the
5432second because it contains a line break, and the last because it looks
5433like a number.
5434
5435@lisp
5436#@{foo bar@}#
5437
5438#@{what
5439ever@}#
5440
5441#@{4242@}#
5442@end lisp
5443
5444Although Guile provides this extended read syntax for symbols,
5445widespread usage of it is discouraged because it is not portable and not
5446very readable.
5447
5448
5449@node Symbol Uninterned
5450@subsubsection Uninterned Symbols
5451
5452What makes symbols useful is that they are automatically kept unique.
5453There are no two symbols that are distinct objects but have the same
5454name. But of course, there is no rule without exception. In addition
5455to the normal symbols that have been discussed up to now, you can also
5456create special @dfn{uninterned} symbols that behave slightly
5457differently.
5458
5459To understand what is different about them and why they might be useful,
5460we look at how normal symbols are actually kept unique.
5461
5462Whenever Guile wants to find the symbol with a specific name, for
5463example during @code{read} or when executing @code{string->symbol}, it
5464first looks into a table of all existing symbols to find out whether a
5465symbol with the given name already exists. When this is the case, Guile
5466just returns that symbol. When not, a new symbol with the name is
5467created and entered into the table so that it can be found later.
5468
5469Sometimes you might want to create a symbol that is guaranteed `fresh',
679cceed 5470i.e.@: a symbol that did not exist previously. You might also want to
07d83abe
MV
5471somehow guarantee that no one else will ever unintentionally stumble
5472across your symbol in the future. These properties of a symbol are
5473often needed when generating code during macro expansion. When
5474introducing new temporary variables, you want to guarantee that they
5475don't conflict with variables in other people's code.
5476
5477The simplest way to arrange for this is to create a new symbol but
5478not enter it into the global table of all symbols. That way, no one
5479will ever get access to your symbol by chance. Symbols that are not in
5480the table are called @dfn{uninterned}. Of course, symbols that
5481@emph{are} in the table are called @dfn{interned}.
5482
5483You create new uninterned symbols with the function @code{make-symbol}.
5484You can test whether a symbol is interned or not with
5485@code{symbol-interned?}.
5486
5487Uninterned symbols break the rule that the name of a symbol uniquely
5488identifies the symbol object. Because of this, they can not be written
5489out and read back in like interned symbols. Currently, Guile has no
5490support for reading uninterned symbols. Note that the function
5491@code{gensym} does not return uninterned symbols for this reason.
5492
5493@deffn {Scheme Procedure} make-symbol name
5494@deffnx {C Function} scm_make_symbol (name)
5495Return a new uninterned symbol with the name @var{name}. The returned
5496symbol is guaranteed to be unique and future calls to
5497@code{string->symbol} will not return it.
5498@end deffn
5499
5500@deffn {Scheme Procedure} symbol-interned? symbol
5501@deffnx {C Function} scm_symbol_interned_p (symbol)
5502Return @code{#t} if @var{symbol} is interned, otherwise return
5503@code{#f}.
5504@end deffn
5505
5506For example:
5507
5508@lisp
5509(define foo-1 (string->symbol "foo"))
5510(define foo-2 (string->symbol "foo"))
5511(define foo-3 (make-symbol "foo"))
5512(define foo-4 (make-symbol "foo"))
5513
5514(eq? foo-1 foo-2)
5515@result{} #t
5516; Two interned symbols with the same name are the same object,
5517
5518(eq? foo-1 foo-3)
5519@result{} #f
5520; but a call to make-symbol with the same name returns a
5521; distinct object.
5522
5523(eq? foo-3 foo-4)
5524@result{} #f
5525; A call to make-symbol always returns a new object, even for
5526; the same name.
5527
5528foo-3
5529@result{} #<uninterned-symbol foo 8085290>
5530; Uninterned symbols print differently from interned symbols,
5531
5532(symbol? foo-3)
5533@result{} #t
5534; but they are still symbols,
5535
5536(symbol-interned? foo-3)
5537@result{} #f
5538; just not interned.
5539@end lisp
5540
5541
5542@node Keywords
5543@subsection Keywords
5544@tpindex Keywords
5545
5546Keywords are self-evaluating objects with a convenient read syntax that
5547makes them easy to type.
5548
5549Guile's keyword support conforms to R5RS, and adds a (switchable) read
5550syntax extension to permit keywords to begin with @code{:} as well as
ef4cbc08 5551@code{#:}, or to end with @code{:}.
07d83abe
MV
5552
5553@menu
5554* Why Use Keywords?:: Motivation for keyword usage.
5555* Coding With Keywords:: How to use keywords.
5556* Keyword Read Syntax:: Read syntax for keywords.
5557* Keyword Procedures:: Procedures for dealing with keywords.
07d83abe
MV
5558@end menu
5559
5560@node Why Use Keywords?
5561@subsubsection Why Use Keywords?
5562
5563Keywords are useful in contexts where a program or procedure wants to be
5564able to accept a large number of optional arguments without making its
5565interface unmanageable.
5566
5567To illustrate this, consider a hypothetical @code{make-window}
5568procedure, which creates a new window on the screen for drawing into
5569using some graphical toolkit. There are many parameters that the caller
5570might like to specify, but which could also be sensibly defaulted, for
5571example:
5572
5573@itemize @bullet
5574@item
5575color depth -- Default: the color depth for the screen
5576
5577@item
5578background color -- Default: white
5579
5580@item
5581width -- Default: 600
5582
5583@item
5584height -- Default: 400
5585@end itemize
5586
5587If @code{make-window} did not use keywords, the caller would have to
5588pass in a value for each possible argument, remembering the correct
5589argument order and using a special value to indicate the default value
5590for that argument:
5591
5592@lisp
5593(make-window 'default ;; Color depth
5594 'default ;; Background color
5595 800 ;; Width
5596 100 ;; Height
5597 @dots{}) ;; More make-window arguments
5598@end lisp
5599
5600With keywords, on the other hand, defaulted arguments are omitted, and
5601non-default arguments are clearly tagged by the appropriate keyword. As
5602a result, the invocation becomes much clearer:
5603
5604@lisp
5605(make-window #:width 800 #:height 100)
5606@end lisp
5607
5608On the other hand, for a simpler procedure with few arguments, the use
5609of keywords would be a hindrance rather than a help. The primitive
5610procedure @code{cons}, for example, would not be improved if it had to
5611be invoked as
5612
5613@lisp
5614(cons #:car x #:cdr y)
5615@end lisp
5616
5617So the decision whether to use keywords or not is purely pragmatic: use
5618them if they will clarify the procedure invocation at point of call.
5619
5620@node Coding With Keywords
5621@subsubsection Coding With Keywords
5622
5623If a procedure wants to support keywords, it should take a rest argument
5624and then use whatever means is convenient to extract keywords and their
5625corresponding arguments from the contents of that rest argument.
5626
5627The following example illustrates the principle: the code for
5628@code{make-window} uses a helper procedure called
5629@code{get-keyword-value} to extract individual keyword arguments from
5630the rest argument.
5631
5632@lisp
5633(define (get-keyword-value args keyword default)
5634 (let ((kv (memq keyword args)))
5635 (if (and kv (>= (length kv) 2))
5636 (cadr kv)
5637 default)))
5638
5639(define (make-window . args)
5640 (let ((depth (get-keyword-value args #:depth screen-depth))
5641 (bg (get-keyword-value args #:bg "white"))
5642 (width (get-keyword-value args #:width 800))
5643 (height (get-keyword-value args #:height 100))
5644 @dots{})
5645 @dots{}))
5646@end lisp
5647
5648But you don't need to write @code{get-keyword-value}. The @code{(ice-9
5649optargs)} module provides a set of powerful macros that you can use to
5650implement keyword-supporting procedures like this:
5651
5652@lisp
5653(use-modules (ice-9 optargs))
5654
5655(define (make-window . args)
5656 (let-keywords args #f ((depth screen-depth)
5657 (bg "white")
5658 (width 800)
5659 (height 100))
5660 ...))
5661@end lisp
5662
5663@noindent
5664Or, even more economically, like this:
5665
5666@lisp
5667(use-modules (ice-9 optargs))
5668
5669(define* (make-window #:key (depth screen-depth)
5670 (bg "white")
5671 (width 800)
5672 (height 100))
5673 ...)
5674@end lisp
5675
5676For further details on @code{let-keywords}, @code{define*} and other
5677facilities provided by the @code{(ice-9 optargs)} module, see
5678@ref{Optional Arguments}.
5679
5680
5681@node Keyword Read Syntax
5682@subsubsection Keyword Read Syntax
5683
7719ef22
MV
5684Guile, by default, only recognizes a keyword syntax that is compatible
5685with R5RS. A token of the form @code{#:NAME}, where @code{NAME} has the
5686same syntax as a Scheme symbol (@pxref{Symbol Read Syntax}), is the
5687external representation of the keyword named @code{NAME}. Keyword
5688objects print using this syntax as well, so values containing keyword
5689objects can be read back into Guile. When used in an expression,
5690keywords are self-quoting objects.
07d83abe
MV
5691
5692If the @code{keyword} read option is set to @code{'prefix}, Guile also
5693recognizes the alternative read syntax @code{:NAME}. Otherwise, tokens
5694of the form @code{:NAME} are read as symbols, as required by R5RS.
5695
ef4cbc08
LC
5696@cindex SRFI-88 keyword syntax
5697
5698If the @code{keyword} read option is set to @code{'postfix}, Guile
189681f5
LC
5699recognizes the SRFI-88 read syntax @code{NAME:} (@pxref{SRFI-88}).
5700Otherwise, tokens of this form are read as symbols.
ef4cbc08 5701
07d83abe 5702To enable and disable the alternative non-R5RS keyword syntax, you use
1518f649
AW
5703the @code{read-set!} procedure documented @ref{Scheme Read}. Note that
5704the @code{prefix} and @code{postfix} syntax are mutually exclusive.
07d83abe 5705
aba0dff5 5706@lisp
07d83abe
MV
5707(read-set! keywords 'prefix)
5708
5709#:type
5710@result{}
5711#:type
5712
5713:type
5714@result{}
5715#:type
5716
ef4cbc08
LC
5717(read-set! keywords 'postfix)
5718
5719type:
5720@result{}
5721#:type
5722
5723:type
5724@result{}
5725:type
5726
07d83abe
MV
5727(read-set! keywords #f)
5728
5729#:type
5730@result{}
5731#:type
5732
5733:type
5734@print{}
5735ERROR: In expression :type:
5736ERROR: Unbound variable: :type
5737ABORT: (unbound-variable)
aba0dff5 5738@end lisp
07d83abe
MV
5739
5740@node Keyword Procedures
5741@subsubsection Keyword Procedures
5742
07d83abe
MV
5743@deffn {Scheme Procedure} keyword? obj
5744@deffnx {C Function} scm_keyword_p (obj)
5745Return @code{#t} if the argument @var{obj} is a keyword, else
5746@code{#f}.
5747@end deffn
5748
7719ef22
MV
5749@deffn {Scheme Procedure} keyword->symbol keyword
5750@deffnx {C Function} scm_keyword_to_symbol (keyword)
5751Return the symbol with the same name as @var{keyword}.
07d83abe
MV
5752@end deffn
5753
7719ef22
MV
5754@deffn {Scheme Procedure} symbol->keyword symbol
5755@deffnx {C Function} scm_symbol_to_keyword (symbol)
5756Return the keyword with the same name as @var{symbol}.
5757@end deffn
07d83abe 5758
7719ef22
MV
5759@deftypefn {C Function} int scm_is_keyword (SCM obj)
5760Equivalent to @code{scm_is_true (scm_keyword_p (@var{obj}))}.
07d83abe
MV
5761@end deftypefn
5762
c428e586
MW
5763@deftypefn {C Function} SCM scm_from_locale_keyword (const char *name)
5764@deftypefnx {C Function} SCM scm_from_locale_keywordn (const char *name, size_t len)
7719ef22 5765Equivalent to @code{scm_symbol_to_keyword (scm_from_locale_symbol
c428e586
MW
5766(@var{name}))} and @code{scm_symbol_to_keyword (scm_from_locale_symboln
5767(@var{name}, @var{len}))}, respectively.
5768
5769Note that these functions should @emph{not} be used when @var{name} is a
5770C string constant, because there is no guarantee that the current locale
5771will match that of the source code. In such cases, use
5772@code{scm_from_latin1_keyword} or @code{scm_from_utf8_keyword}.
5773@end deftypefn
5774
5775@deftypefn {C Function} SCM scm_from_latin1_keyword (const char *name)
5776@deftypefnx {C Function} SCM scm_from_utf8_keyword (const char *name)
5777Equivalent to @code{scm_symbol_to_keyword (scm_from_latin1_symbol
5778(@var{name}))} and @code{scm_symbol_to_keyword (scm_from_utf8_symbol
5779(@var{name}))}, respectively.
7719ef22 5780@end deftypefn
07d83abe
MV
5781
5782@node Other Types
5783@subsection ``Functionality-Centric'' Data Types
5784
a136ada6 5785Procedures and macros are documented in their own sections: see
e4955559 5786@ref{Procedures} and @ref{Macros}.
07d83abe
MV
5787
5788Variable objects are documented as part of the description of Guile's
5789module system: see @ref{Variables}.
5790
a136ada6 5791Asyncs, dynamic roots and fluids are described in the section on
07d83abe
MV
5792scheduling: see @ref{Scheduling}.
5793
a136ada6 5794Hooks are documented in the section on general utility functions: see
07d83abe
MV
5795@ref{Hooks}.
5796
a136ada6 5797Ports are described in the section on I/O: see @ref{Input and Output}.
07d83abe 5798
a136ada6
NJ
5799Regular expressions are described in their own section: see @ref{Regular
5800Expressions}.
07d83abe
MV
5801
5802@c Local Variables:
5803@c TeX-master: "guile.texi"
5804@c End: