154 lines
5.4 KiB
HTML
154 lines
5.4 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<!-- This manual documents Guile version 3.0.10.
|
||
|
|
||
|
Copyright (C) 1996-1997, 2000-2005, 2009-2023 Free Software Foundation,
|
||
|
Inc.
|
||
|
|
||
|
Copyright (C) 2021 Maxime Devos
|
||
|
|
||
|
Copyright (C) 2024 Tomas Volf
|
||
|
|
||
|
|
||
|
Permission is granted to copy, distribute and/or modify this document
|
||
|
under the terms of the GNU Free Documentation License, Version 1.3 or
|
||
|
any later version published by the Free Software Foundation; with no
|
||
|
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
|
||
|
copy of the license is included in the section entitled "GNU Free
|
||
|
Documentation License." -->
|
||
|
<title>Number Syntax (Guile Reference Manual)</title>
|
||
|
|
||
|
<meta name="description" content="Number Syntax (Guile Reference Manual)">
|
||
|
<meta name="keywords" content="Number Syntax (Guile Reference Manual)">
|
||
|
<meta name="resource-type" content="document">
|
||
|
<meta name="distribution" content="global">
|
||
|
<meta name="Generator" content=".texi2any-real">
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
|
|
||
|
<link href="index.html" rel="start" title="Top">
|
||
|
<link href="Concept-Index.html" rel="index" title="Concept Index">
|
||
|
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||
|
<link href="Numbers.html" rel="up" title="Numbers">
|
||
|
<link href="Integer-Operations.html" rel="next" title="Integer Operations">
|
||
|
<link href="Exactness.html" rel="prev" title="Exactness">
|
||
|
<style type="text/css">
|
||
|
<!--
|
||
|
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||
|
div.example {margin-left: 3.2em}
|
||
|
span:hover a.copiable-link {visibility: visible}
|
||
|
-->
|
||
|
</style>
|
||
|
<link rel="stylesheet" type="text/css" href="https://www.gnu.org/software/gnulib/manual.css">
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body lang="en">
|
||
|
<div class="subsubsection-level-extent" id="Number-Syntax">
|
||
|
<div class="nav-panel">
|
||
|
<p>
|
||
|
Next: <a href="Integer-Operations.html" accesskey="n" rel="next">Operations on Integer Values</a>, Previous: <a href="Exactness.html" accesskey="p" rel="prev">Exact and Inexact Numbers</a>, Up: <a href="Numbers.html" accesskey="u" rel="up">Numerical data types</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
|
||
|
</div>
|
||
|
<hr>
|
||
|
<h4 class="subsubsection" id="Read-Syntax-for-Numerical-Data"><span>6.6.2.6 Read Syntax for Numerical Data<a class="copiable-link" href="#Read-Syntax-for-Numerical-Data"> ¶</a></span></h4>
|
||
|
|
||
|
<p>The read syntax for integers is a string of digits, optionally
|
||
|
preceded by a minus or plus character, a code indicating the
|
||
|
base in which the integer is encoded, and a code indicating whether
|
||
|
the number is exact or inexact. The supported base codes are:
|
||
|
</p>
|
||
|
<dl class="table">
|
||
|
<dt><code class="code">#b</code></dt>
|
||
|
<dt><code class="code">#B</code></dt>
|
||
|
<dd><p>the integer is written in binary (base 2)
|
||
|
</p>
|
||
|
</dd>
|
||
|
<dt><code class="code">#o</code></dt>
|
||
|
<dt><code class="code">#O</code></dt>
|
||
|
<dd><p>the integer is written in octal (base 8)
|
||
|
</p>
|
||
|
</dd>
|
||
|
<dt><code class="code">#d</code></dt>
|
||
|
<dt><code class="code">#D</code></dt>
|
||
|
<dd><p>the integer is written in decimal (base 10)
|
||
|
</p>
|
||
|
</dd>
|
||
|
<dt><code class="code">#x</code></dt>
|
||
|
<dt><code class="code">#X</code></dt>
|
||
|
<dd><p>the integer is written in hexadecimal (base 16)
|
||
|
</p></dd>
|
||
|
</dl>
|
||
|
|
||
|
<p>If the base code is omitted, the integer is assumed to be decimal. The
|
||
|
following examples show how these base codes are used.
|
||
|
</p>
|
||
|
<div class="example lisp">
|
||
|
<pre class="lisp-preformatted">-13
|
||
|
⇒ -13
|
||
|
|
||
|
#d-13
|
||
|
⇒ -13
|
||
|
|
||
|
#x-13
|
||
|
⇒ -19
|
||
|
|
||
|
#b+1101
|
||
|
⇒ 13
|
||
|
|
||
|
#o377
|
||
|
⇒ 255
|
||
|
</pre></div>
|
||
|
|
||
|
<p>The codes for indicating exactness (which can, incidentally, be applied
|
||
|
to all numerical values) are:
|
||
|
</p>
|
||
|
<dl class="table">
|
||
|
<dt><code class="code">#e</code></dt>
|
||
|
<dt><code class="code">#E</code></dt>
|
||
|
<dd><p>the number is exact
|
||
|
</p>
|
||
|
</dd>
|
||
|
<dt><code class="code">#i</code></dt>
|
||
|
<dt><code class="code">#I</code></dt>
|
||
|
<dd><p>the number is inexact.
|
||
|
</p></dd>
|
||
|
</dl>
|
||
|
|
||
|
<p>If the exactness indicator is omitted, the number is exact unless it
|
||
|
contains a radix point. Since Guile can not represent exact complex
|
||
|
numbers, an error is signaled when asking for them.
|
||
|
</p>
|
||
|
<div class="example lisp">
|
||
|
<pre class="lisp-preformatted">(exact? 1.2)
|
||
|
⇒ #f
|
||
|
|
||
|
(exact? #e1.2)
|
||
|
⇒ #t
|
||
|
|
||
|
(exact? #e+1i)
|
||
|
ERROR: Wrong type argument
|
||
|
</pre></div>
|
||
|
|
||
|
<p>Guile also understands the syntax ‘<samp class="samp">+inf.0</samp>’ and ‘<samp class="samp">-inf.0</samp>’ for
|
||
|
plus and minus infinity, respectively. The value must be written
|
||
|
exactly as shown, that is, they always must have a sign and exactly
|
||
|
one zero digit after the decimal point. It also understands
|
||
|
‘<samp class="samp">+nan.0</samp>’ and ‘<samp class="samp">-nan.0</samp>’ for the special ‘not-a-number’ value.
|
||
|
The sign is ignored for ‘not-a-number’ and the value is always printed
|
||
|
as ‘<samp class="samp">+nan.0</samp>’.
|
||
|
</p>
|
||
|
</div>
|
||
|
<hr>
|
||
|
<div class="nav-panel">
|
||
|
<p>
|
||
|
Next: <a href="Integer-Operations.html">Operations on Integer Values</a>, Previous: <a href="Exactness.html">Exact and Inexact Numbers</a>, Up: <a href="Numbers.html">Numerical data types</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|