This file is indexed.

/usr/share/doc/r5rs-doc/r5rs/Naming-conventions.html is in r5rs-doc 20010328-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html lang="en">
<head>
<title>Naming conventions - Revised(5) Scheme</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Revised(5) Scheme">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Notation-and-terminology.html#Notation-and-terminology" title="Notation and terminology">
<link rel="prev" href="Evaluation-examples.html#Evaluation-examples" title="Evaluation examples">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
  pre.display { font-family:inherit }
  pre.format  { font-family:inherit }
  pre.smalldisplay { font-family:inherit; font-size:smaller }
  pre.smallformat  { font-family:inherit; font-size:smaller }
  pre.smallexample { font-size:smaller }
  pre.smalllisp    { font-size:smaller }
  span.sc    { font-variant:small-caps }
  span.roman { font-family:serif; font-weight:normal; } 
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
--></style>
</head>
<body>
<div class="node">
<a name="Naming-conventions"></a>
<p>
Previous:&nbsp;<a rel="previous" accesskey="p" href="Evaluation-examples.html#Evaluation-examples">Evaluation examples</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Notation-and-terminology.html#Notation-and-terminology">Notation and terminology</a>
<hr>
</div>

<h4 class="subsection">1.3.5 Naming conventions</h4>

<p><a name="index-g_t_0040w_007bnaming-conventions_007d-24"></a>
By convention, the names of procedures that always return a boolean
value usually end
in &ldquo;<code>?</code>&rdquo;.  Such procedures are called predicates. 
<a name="index-g_t_0040w_007b_003f_007d-25"></a>
By convention, the names of procedures that store values into previously
allocated locations (see section see <a href="Storage-model.html#Storage-model">Storage model</a>) usually end in
&ldquo;<code>!</code>&rdquo;. 
<a name="index-g_t_0040w_007b_0021_007d-26"></a>Such procedures are called mutation procedures. 
By convention, the value returned by a mutation procedure is unspecified.

<p>By convention, &ldquo;<code>-&gt;</code>&rdquo; appears within the names of procedures that
<a name="index-g_t_0040w_007b_002d_003e_007d-27"></a>take an object of one type and return an analogous object of another type. 
For example, &lsquo;<samp><span class="samp">list-&gt;vector</span></samp>&rsquo; takes a list and returns a vector whose
elements are the same as those of the list.

<!-- @include{lex} -->
<!-- Lexical structure -->
<!-- %\vfill\eject -->
</body></html>