103 lines
5 KiB
HTML
103 lines
5 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>Record Overview (Guile Reference Manual)</title>
|
|
|
|
<meta name="description" content="Record Overview (Guile Reference Manual)">
|
|
<meta name="keywords" content="Record Overview (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="Data-Types.html" rel="up" title="Data Types">
|
|
<link href="SRFI_002d9-Records.html" rel="next" title="SRFI-9 Records">
|
|
<link href="VLists.html" rel="prev" title="VLists">
|
|
<style type="text/css">
|
|
<!--
|
|
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
|
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="subsection-level-extent" id="Record-Overview">
|
|
<div class="nav-panel">
|
|
<p>
|
|
Next: <a href="SRFI_002d9-Records.html" accesskey="n" rel="next">SRFI-9 Records</a>, Previous: <a href="VLists.html" accesskey="p" rel="prev">VLists</a>, Up: <a href="Data-Types.html" accesskey="u" rel="up">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="subsection" id="Record-Overview-1"><span>6.6.15 Record Overview<a class="copiable-link" href="#Record-Overview-1"> ¶</a></span></h4>
|
|
|
|
<a class="index-entry-id" id="index-record"></a>
|
|
<a class="index-entry-id" id="index-structure"></a>
|
|
|
|
<p><em class="dfn">Records</em>, also called <em class="dfn">structures</em>, are Scheme’s primary
|
|
mechanism to define new disjoint types. A <em class="dfn">record type</em> defines a
|
|
list of <em class="dfn">fields</em> that instances of the type consist of. This is like
|
|
C’s <code class="code">struct</code>.
|
|
</p>
|
|
<p>Historically, Guile has offered several different ways to define record
|
|
types and to create records, offering different features, and making
|
|
different trade-offs. Over the years, each “standard” has also come
|
|
with its own new record interface, leading to a maze of record APIs.
|
|
</p>
|
|
<p>At the highest level is SRFI-9, a high-level record interface
|
|
implemented by most Scheme implementations (see <a class="pxref" href="SRFI_002d9-Records.html">SRFI-9 Records</a>). It
|
|
defines a simple and efficient syntactic abstraction of record types and
|
|
their associated type predicate, fields, and field accessors. SRFI-9 is
|
|
suitable for most uses, and this is the recommended way to create record
|
|
types in Guile. Similar high-level record APIs include SRFI-35
|
|
(see <a class="pxref" href="SRFI_002d35.html">SRFI-35 - Conditions</a>) and R6RS records (see <a class="pxref" href="rnrs-records-syntactic.html">rnrs records syntactic</a>).
|
|
</p>
|
|
<p>Then comes Guile’s historical “records” API (see <a class="pxref" href="Records.html">Records</a>). Record
|
|
types defined this way are first-class objects. Introspection
|
|
facilities are available, allowing users to query the list of fields or
|
|
the value of a specific field at run-time, without prior knowledge of
|
|
the type.
|
|
</p>
|
|
<p>Finally, the common denominator of these interfaces is Guile’s
|
|
<em class="dfn">structure</em> API (see <a class="pxref" href="Structures.html">Structures</a>). Guile’s structures are the
|
|
low-level building block for all other record APIs. Application writers
|
|
will normally not need to use it.
|
|
</p>
|
|
<p>Records created with these APIs may all be pattern-matched using Guile’s
|
|
standard pattern matcher (see <a class="pxref" href="Pattern-Matching.html">Pattern Matching</a>).
|
|
</p>
|
|
|
|
</div>
|
|
<hr>
|
|
<div class="nav-panel">
|
|
<p>
|
|
Next: <a href="SRFI_002d9-Records.html">SRFI-9 Records</a>, Previous: <a href="VLists.html">VLists</a>, Up: <a href="Data-Types.html">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>
|