retro-nga

Check-in [23dffad274]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix #102: glossary: a:last description is same as a:left
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 23dffad274fb83eba6208843d7e061ef74e66448f49d736abb4f58599573437a
User & Date: crc 2024-09-06 10:13:05
Context
2024-09-06
10:39
fix #101: epub: chapter names are not rendered check-in: 7dd2b1bd75 user: crc tags: trunk
10:13
fix #102: glossary: a:last description is same as a:left check-in: 23dffad274 user: crc tags: trunk
2024-08-28
18:53
update s:filter to truncate overly long strings before filtering check-in: d019ed025b user: crc tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to doc/Glossary-Concise.txt.

352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
a:indices                 D: av-a  A: -  F: -
Return a new array with the indices the specified value was found at in the original array.

a:indices/string          D: as-a  A: -  F: -
Return a new array with the indices of the specified string in the original array.

a:last                    D: a-n  A: -  F: -
Return a new array containing the first `n` values from the source array.

a:left                    D: an-a  A: -  F: -
Return a new array containing the first `n` values from the source array.

a:length                  D: a-n  A: -  F: -
Return the length of a array.








|







352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
a:indices                 D: av-a  A: -  F: -
Return a new array with the indices the specified value was found at in the original array.

a:indices/string          D: as-a  A: -  F: -
Return a new array with the indices of the specified string in the original array.

a:last                    D: a-n  A: -  F: -
Return the last value in the array.

a:left                    D: an-a  A: -  F: -
Return a new array containing the first `n` values from the source array.

a:length                  D: a-n  A: -  F: -
Return the length of a array.

Changes to doc/Glossary.html.

863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
<p>Return a new array with the indices of the specified string in the original array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:last</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing the first `n` values from the source array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:left</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing the first `n` values from the source array.</p>







|







863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
<p>Return a new array with the indices of the specified string in the original array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:last</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> a-n<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return the last value in the array.</p>
<table><tr><td><b>Class:</b> </td><td>class:word</td></tr><tr><td><b>Namespace:</b> </td><td>a</td></tr><tr><td><b>Interface Layer:</b> </td><td>all</td></tr></table><hr/>
<h2>a:left</h2>
<div style='margin-left: 1em;'><p><b>Data:</b> an-a<br>
<b>Addr:</b> -<br>
<b>Float:</b> -</p>
</div>
<p>Return a new array containing the first `n` values from the source array.</p>

Changes to doc/Glossary.txt.

1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361

a:last

  Data:  a-n
  Addr:  -
  Float: -

Return a new array containing the first `n` values from the source array.

Class: class:word | Namespace: a | Interface Layer: all
------------------------------------------------------------------------

a:left

  Data:  an-a







|







1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361

a:last

  Data:  a-n
  Addr:  -
  Float: -

Return the last value in the array.

Class: class:word | Namespace: a | Interface Layer: all
------------------------------------------------------------------------

a:left

  Data:  an-a

Changes to doc/words.tsv.

113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
a:for-each	aq-	-	-	Execute the quote once for each item in the array.			class:word	{n/a}	{n/a}	a	all	
a:from-string	s-a	-	-	Create a new array with the characters in the source string.			class:word	{n/a}	{n/a}	a	all	
a:hash	a-n	-	-	Calculate a hash value for a given array.			class:word	{n/a}	{n/a}	a	all	
a:index	an-n	-	-	Return the location of the first instance of the specified value in the array.			class:word	{n/a}	{n/a}	a	all	
a:index/string	as-n	-	-	Return the location of the first instance of the specified string in the array.			class:word	{n/a}	{n/a}	a	all	
a:indices	av-a	-	-	Return a new array with the indices the specified value was found at in the original array.			class:word	{n/a}	{n/a}	a	all	
a:indices/string	as-a	-	-	Return a new array with the indices of the specified string in the original array.			class:word	{n/a}	{n/a}	a	all	
a:last	a-n	-	-	Return a new array containing the first `n` values from the source array.			class:word	{n/a}	{n/a}	a	all	
a:left	an-a	-	-	Return a new array containing the first `n` values from the source array.			class:word	{n/a}	{n/a}	a	all	
a:length	a-n	-	-	Return the length of a array.			class:word	{n/a}	{n/a}	a	all	
a:make	q-a	-	-	Execute quote. Return a new array containing the values the quote leaves on the stack. This is identical to doing `a:counted-results			class:word	{n/a}	{n/a}	a	all	
a:map	aq-b	-	-	Execute quote once for each item in the array. Constructs a new array from the value returned by the quote.			class:word	{n/a}	{n/a}	a	all	
a:middle	afl-a	-	-	Extract a new array from the middle of the specified array. This will take the values starting at `f` and extend to the `l` last value.			class:word	{n/a}	{n/a}	a	all	
a:prepend	aa-a	-	-	Return a new array consisting of the values in a2 followed by the values in a1.			class:word	{n/a}	{n/a}	a	all	
a:reduce	pnq-n	-	-	Takes an array, a starting value, and a quote. This will apply the quote to each item in the array; the quote should consume two values and return one.			class:word	{n/a}	{n/a}	a	all	







|







113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
a:for-each	aq-	-	-	Execute the quote once for each item in the array.			class:word	{n/a}	{n/a}	a	all	
a:from-string	s-a	-	-	Create a new array with the characters in the source string.			class:word	{n/a}	{n/a}	a	all	
a:hash	a-n	-	-	Calculate a hash value for a given array.			class:word	{n/a}	{n/a}	a	all	
a:index	an-n	-	-	Return the location of the first instance of the specified value in the array.			class:word	{n/a}	{n/a}	a	all	
a:index/string	as-n	-	-	Return the location of the first instance of the specified string in the array.			class:word	{n/a}	{n/a}	a	all	
a:indices	av-a	-	-	Return a new array with the indices the specified value was found at in the original array.			class:word	{n/a}	{n/a}	a	all	
a:indices/string	as-a	-	-	Return a new array with the indices of the specified string in the original array.			class:word	{n/a}	{n/a}	a	all	
a:last	a-n	-	-	Return the last value in the array.			class:word	{n/a}	{n/a}	a	all	
a:left	an-a	-	-	Return a new array containing the first `n` values from the source array.			class:word	{n/a}	{n/a}	a	all	
a:length	a-n	-	-	Return the length of a array.			class:word	{n/a}	{n/a}	a	all	
a:make	q-a	-	-	Execute quote. Return a new array containing the values the quote leaves on the stack. This is identical to doing `a:counted-results			class:word	{n/a}	{n/a}	a	all	
a:map	aq-b	-	-	Execute quote once for each item in the array. Constructs a new array from the value returned by the quote.			class:word	{n/a}	{n/a}	a	all	
a:middle	afl-a	-	-	Extract a new array from the middle of the specified array. This will take the values starting at `f` and extend to the `l` last value.			class:word	{n/a}	{n/a}	a	all	
a:prepend	aa-a	-	-	Return a new array consisting of the values in a2 followed by the values in a1.			class:word	{n/a}	{n/a}	a	all	
a:reduce	pnq-n	-	-	Takes an array, a starting value, and a quote. This will apply the quote to each item in the array; the quote should consume two values and return one.			class:word	{n/a}	{n/a}	a	all