linmeric 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +51 -0
- data/Rakefile +10 -0
- data/bin/help/Help.rb +184 -0
- data/bin/help/Help_inst.rb +244 -0
- data/bin/linguide +23 -0
- data/bin/linmeric +36 -70
- data/doc/Archive.html +352 -0
- data/doc/Calculator/Evaluator.html +477 -0
- data/doc/Calculator/Lexer.html +186 -0
- data/doc/Calculator/Token.html +257 -0
- data/doc/Calculator.html +181 -0
- data/doc/Dim.html +257 -0
- data/doc/Filename.html +246 -0
- data/doc/Fixnum.html +253 -0
- data/doc/Float.html +253 -0
- data/doc/Function.html +784 -0
- data/doc/InputError.html +102 -0
- data/doc/Instructions_en.txt +6 -7
- data/doc/Instructions_it.txt +6 -9
- data/doc/Integrators.html +436 -0
- data/doc/LU.html +435 -0
- data/doc/Lexer.html +261 -0
- data/doc/Linmeric.html +109 -0
- data/doc/Listener.html +605 -0
- data/doc/Matrix.html +1719 -0
- data/doc/MyArgError.html +102 -0
- data/doc/NilClass.html +202 -0
- data/doc/Numeric.html +251 -0
- data/doc/Parser.html +389 -0
- data/doc/PrintError.html +622 -0
- data/doc/README_md.html +142 -0
- data/doc/Scp.html +530 -0
- data/doc/Sizer.html +652 -0
- data/doc/String.html +540 -0
- data/doc/Token.html +341 -0
- data/doc/Tool.html +394 -0
- data/doc/created.rid +18 -0
- data/doc/css/fonts.css +167 -0
- data/doc/css/rdoc.css +590 -0
- data/doc/fonts/Lato-Light.ttf +0 -0
- data/doc/fonts/Lato-LightItalic.ttf +0 -0
- data/doc/fonts/Lato-Regular.ttf +0 -0
- data/doc/fonts/Lato-RegularItalic.ttf +0 -0
- data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
- data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
- data/doc/images/add.png +0 -0
- data/doc/images/arrow_up.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +190 -0
- data/doc/js/darkfish.js +161 -0
- data/doc/js/jquery.js +9404 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/navigation.js.gz +0 -0
- data/doc/js/search.js +109 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/search_index.js.gz +0 -0
- data/doc/js/searcher.js +228 -0
- data/doc/js/searcher.js.gz +0 -0
- data/doc/table_of_contents.html +834 -0
- data/lib/linmeric/Archive.rb +22 -1
- data/lib/linmeric/Calculator.rb +252 -0
- data/lib/linmeric/CnGal_Matrix_class.rb +130 -49
- data/lib/linmeric/CnGal_new_classes.rb +139 -37
- data/lib/linmeric/CnGal_tools.rb +23 -40
- data/lib/linmeric/Error_print.rb +35 -1
- data/lib/linmeric/Function_class.rb +70 -11
- data/lib/linmeric/Integrators.rb +81 -35
- data/lib/linmeric/LU.rb +26 -5
- data/lib/linmeric/Lexer.rb +19 -1
- data/lib/linmeric/Listener.rb +25 -5
- data/lib/linmeric/Parser.rb +23 -1
- data/lib/linmeric/Scopify.rb +52 -31
- data/lib/linmeric/Sizer.rb +43 -10
- data/lib/linmeric/Token.rb +23 -4
- data/lib/linmeric/version.rb +3 -0
- data/lib/linmeric.rb +10 -8
- data/lib/linmeric_bin.rb +12 -0
- metadata +126 -22
- data/doc/Instructions_en.html +0 -231
- data/doc/Instructions_it.html +0 -231
- data/doc/README_en.html +0 -177
- data/doc/README_en.txt +0 -30
- data/doc/README_it.html +0 -187
- data/doc/README_it.txt +0 -32
data/doc/Lexer.html
ADDED
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
|
|
7
|
+
<title>class Lexer - RDoc Documentation</title>
|
|
8
|
+
|
|
9
|
+
<script type="text/javascript">
|
|
10
|
+
var rdoc_rel_prefix = "./";
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<script src="./js/jquery.js"></script>
|
|
14
|
+
<script src="./js/darkfish.js"></script>
|
|
15
|
+
|
|
16
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
|
17
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<body id="top" role="document" class="class">
|
|
22
|
+
<nav role="navigation">
|
|
23
|
+
<div id="project-navigation">
|
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
|
25
|
+
<h2>
|
|
26
|
+
<a href="./index.html" rel="home">Home</a>
|
|
27
|
+
</h2>
|
|
28
|
+
|
|
29
|
+
<div id="table-of-contents-navigation">
|
|
30
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
|
31
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
|
32
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
|
37
|
+
<form action="#" method="get" accept-charset="utf-8">
|
|
38
|
+
<div id="search-field-wrapper">
|
|
39
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
|
40
|
+
aria-autocomplete="list" aria-controls="search-results"
|
|
41
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
|
42
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
<ul id="search-results" aria-label="Search Results"
|
|
46
|
+
aria-busy="false" aria-expanded="false"
|
|
47
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
|
48
|
+
</form>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<div id="class-metadata">
|
|
56
|
+
|
|
57
|
+
<div id="parent-class-section" class="nav-section">
|
|
58
|
+
<h3>Parent</h3>
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
<p class="link">Object
|
|
62
|
+
|
|
63
|
+
</div>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
<!-- Method Quickref -->
|
|
68
|
+
<div id="method-list-section" class="nav-section">
|
|
69
|
+
<h3>Methods</h3>
|
|
70
|
+
|
|
71
|
+
<ul class="link-list" role="directory">
|
|
72
|
+
|
|
73
|
+
<li ><a href="#method-i-extract_gen_exp">#extract_gen_exp</a>
|
|
74
|
+
|
|
75
|
+
<li ><a href="#method-i-tokenize">#tokenize</a>
|
|
76
|
+
|
|
77
|
+
</ul>
|
|
78
|
+
</div>
|
|
79
|
+
|
|
80
|
+
</div>
|
|
81
|
+
</nav>
|
|
82
|
+
|
|
83
|
+
<main role="main" aria-labelledby="class-Lexer">
|
|
84
|
+
<h1 id="class-Lexer" class="class">
|
|
85
|
+
class Lexer
|
|
86
|
+
</h1>
|
|
87
|
+
|
|
88
|
+
<section class="description">
|
|
89
|
+
|
|
90
|
+
<p>This simple <a href="Lexer.html">Lexer</a> tokenizes the input stream of
|
|
91
|
+
commands for the sintax analyzer</p>
|
|
92
|
+
<dl class="rdoc-list note-list"><dt>Author
|
|
93
|
+
<dd>
|
|
94
|
+
<p>Massimiliano Dal Mas (<a
|
|
95
|
+
href="mailto:max.codeware@gmail.com">max.codeware@gmail.com</a>)</p>
|
|
96
|
+
</dd><dt>License
|
|
97
|
+
<dd>
|
|
98
|
+
<p>Distributed under MIT license</p>
|
|
99
|
+
</dd></dl>
|
|
100
|
+
|
|
101
|
+
</section>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
<section id="public-instance-5Buntitled-5D-method-details" class="method-section">
|
|
117
|
+
<header>
|
|
118
|
+
<h3>Public Instance Methods</h3>
|
|
119
|
+
</header>
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
<div id="method-i-tokenize" class="method-detail ">
|
|
123
|
+
|
|
124
|
+
<div class="method-heading">
|
|
125
|
+
<span class="method-name">tokenize</span><span
|
|
126
|
+
class="method-args">(expr)</span>
|
|
127
|
+
|
|
128
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
129
|
+
|
|
130
|
+
</div>
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
<div class="method-description">
|
|
134
|
+
|
|
135
|
+
<p>Tokenizes the input stream according to particular tokenizer symbols which
|
|
136
|
+
determine the end of an element.Eg: a+3 => `+` determines the end of
|
|
137
|
+
variable `a` and the beginning of another element (`3`)</p>
|
|
138
|
+
<ul><li>
|
|
139
|
+
<p>*<strong>argument</strong>*: string to tokenize</p>
|
|
140
|
+
</li><li>
|
|
141
|
+
<p>*<strong>returns</strong>*: array of tokens (see: <a
|
|
142
|
+
href="Token.html">Token</a> )</p>
|
|
143
|
+
</li></ul>
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<div class="method-source-code" id="tokenize-source">
|
|
149
|
+
<pre><span class="ruby-comment"># File lib/linmeric/Lexer.rb, line 21</span>
|
|
150
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier">tokenize</span>(<span class="ruby-identifier">expr</span>)
|
|
151
|
+
<span class="ruby-identifier">token</span> = []
|
|
152
|
+
<span class="ruby-identifier">temp</span> = <span class="ruby-string">""</span>
|
|
153
|
+
<span class="ruby-identifier">ignore</span> = <span class="ruby-keyword">false</span>
|
|
154
|
+
<span class="ruby-identifier">pos</span> = <span class="ruby-value">0</span>
|
|
155
|
+
<span class="ruby-identifier">i</span> = <span class="ruby-value">0</span>
|
|
156
|
+
<span class="ruby-identifier">gen_exp</span> = []
|
|
157
|
+
<span class="ruby-identifier">tokenizers</span> = <span class="ruby-constant">Tool</span>.<span class="ruby-identifier">operators</span> <span class="ruby-operator">+</span> [<span class="ruby-string">" "</span>,<span class="ruby-string">"("</span>,<span class="ruby-string">")"</span>,<span class="ruby-string">":"</span>,<span class="ruby-string">'"'</span>,<span class="ruby-string">"~"</span>]
|
|
158
|
+
<span class="ruby-keyword">while</span> <span class="ruby-identifier">i</span> <span class="ruby-operator"><</span> <span class="ruby-identifier">expr</span>.<span class="ruby-identifier">size</span>
|
|
159
|
+
<span class="ruby-keyword">if</span> (<span class="ruby-identifier">tokenizers</span>.<span class="ruby-identifier">include?</span> <span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>]) <span class="ruby-keyword">then</span>
|
|
160
|
+
<span class="ruby-identifier">temp</span> <span class="ruby-operator">+=</span> <span class="ruby-string">':'</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>] <span class="ruby-operator">==</span> <span class="ruby-string">':'</span>
|
|
161
|
+
<span class="ruby-identifier">token</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Token</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">temp</span>, <span class="ruby-identifier">pos</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">temp</span> <span class="ruby-operator">==</span> <span class="ruby-string">""</span>
|
|
162
|
+
<span class="ruby-identifier">temp</span> = <span class="ruby-string">""</span>
|
|
163
|
+
<span class="ruby-identifier">token</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Token</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>],<span class="ruby-identifier">i</span>) <span class="ruby-keyword">unless</span> <span class="ruby-string">" :"</span>.<span class="ruby-identifier">include?</span> <span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>]
|
|
164
|
+
<span class="ruby-identifier">gen_exp</span> = <span class="ruby-identifier">extract_gen_exp</span>(<span class="ruby-identifier">expr</span>[(<span class="ruby-identifier">i</span><span class="ruby-operator">+</span><span class="ruby-value">1</span>)<span class="ruby-operator">...</span><span class="ruby-identifier">expr</span>.<span class="ruby-identifier">size</span>]) <span class="ruby-keyword">if</span> <span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>] <span class="ruby-operator">==</span> <span class="ruby-string">'"'</span>
|
|
165
|
+
<span class="ruby-identifier">token</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Token</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">gen_exp</span>[<span class="ruby-value">0</span>],<span class="ruby-identifier">pos</span><span class="ruby-operator">+</span><span class="ruby-value">1</span>,<span class="ruby-string">"GENERAL_STRING"</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">gen_exp</span> <span class="ruby-operator">==</span> []
|
|
166
|
+
<span class="ruby-identifier">i</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">gen_exp</span>[<span class="ruby-value">1</span>] <span class="ruby-keyword">unless</span> <span class="ruby-identifier">gen_exp</span> <span class="ruby-operator">==</span> []
|
|
167
|
+
<span class="ruby-identifier">pos</span> = <span class="ruby-identifier">i</span> <span class="ruby-operator">+</span> ((<span class="ruby-identifier">gen_exp</span> <span class="ruby-operator">==</span> []) <span class="ruby-operator">?</span> <span class="ruby-value">1</span> <span class="ruby-operator">:</span> <span class="ruby-value">0</span>)
|
|
168
|
+
<span class="ruby-identifier">token</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Token</span>.<span class="ruby-identifier">new</span>(<span class="ruby-string">'"'</span>,<span class="ruby-identifier">pos</span>) <span class="ruby-operator">&&</span> <span class="ruby-identifier">pos</span> <span class="ruby-operator">+=</span> <span class="ruby-value">1</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">gen_exp</span>[<span class="ruby-value">2</span>]
|
|
169
|
+
<span class="ruby-identifier">gen_exp</span> = []
|
|
170
|
+
<span class="ruby-keyword">else</span>
|
|
171
|
+
<span class="ruby-identifier">temp</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">expr</span>[<span class="ruby-identifier">i</span>]
|
|
172
|
+
<span class="ruby-keyword">end</span>
|
|
173
|
+
<span class="ruby-identifier">i</span> <span class="ruby-operator">+=</span> <span class="ruby-value">1</span>
|
|
174
|
+
<span class="ruby-keyword">end</span>
|
|
175
|
+
<span class="ruby-identifier">token</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Token</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">temp</span>,<span class="ruby-identifier">pos</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">temp</span> <span class="ruby-operator">==</span> <span class="ruby-string">""</span>
|
|
176
|
+
<span class="ruby-keyword">return</span> <span class="ruby-identifier">token</span>
|
|
177
|
+
<span class="ruby-keyword">end</span></pre>
|
|
178
|
+
</div>
|
|
179
|
+
|
|
180
|
+
</div>
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
</section>
|
|
189
|
+
|
|
190
|
+
<section id="private-instance-5Buntitled-5D-method-details" class="method-section">
|
|
191
|
+
<header>
|
|
192
|
+
<h3>Private Instance Methods</h3>
|
|
193
|
+
</header>
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
<div id="method-i-extract_gen_exp" class="method-detail ">
|
|
197
|
+
|
|
198
|
+
<div class="method-heading">
|
|
199
|
+
<span class="method-name">extract_gen_exp</span><span
|
|
200
|
+
class="method-args">(string)</span>
|
|
201
|
+
|
|
202
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
203
|
+
|
|
204
|
+
</div>
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
<div class="method-description">
|
|
208
|
+
|
|
209
|
+
<p>Reads all the content between quotes so that it can be classified as string</p>
|
|
210
|
+
<ul><li>
|
|
211
|
+
<p>*<strong>argument</strong>*: string to extract the 'string' element</p>
|
|
212
|
+
</li><li>
|
|
213
|
+
<p>*<strong>returns</strong>*: array with three elements:</p>
|
|
214
|
+
<ul><li>
|
|
215
|
+
<p>'string' element</p>
|
|
216
|
+
</li><li>
|
|
217
|
+
<p>counter `i`</p>
|
|
218
|
+
</li><li>
|
|
219
|
+
<p>boleean value to tell whether final quotes have been found
|
|
220
|
+
(<code>true</code> = found, <code>false</code> = not found)</p>
|
|
221
|
+
</li></ul>
|
|
222
|
+
</li></ul>
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<div class="method-source-code" id="extract_gen_exp-source">
|
|
228
|
+
<pre><span class="ruby-comment"># File lib/linmeric/Lexer.rb, line 59</span>
|
|
229
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier">extract_gen_exp</span>(<span class="ruby-identifier">string</span>)
|
|
230
|
+
<span class="ruby-identifier">i</span> = <span class="ruby-value">0</span>
|
|
231
|
+
<span class="ruby-identifier">gen_exp</span> = <span class="ruby-string">""</span>
|
|
232
|
+
<span class="ruby-keyword">while</span> <span class="ruby-identifier">i</span> <span class="ruby-operator"><</span> <span class="ruby-identifier">string</span>.<span class="ruby-identifier">size</span> <span class="ruby-keyword">and</span> <span class="ruby-identifier">string</span>[<span class="ruby-identifier">i</span>] <span class="ruby-operator">!=</span> <span class="ruby-string">'"'</span>
|
|
233
|
+
<span class="ruby-identifier">gen_exp</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">string</span>[<span class="ruby-identifier">i</span>]
|
|
234
|
+
<span class="ruby-identifier">i</span> <span class="ruby-operator">+=</span> <span class="ruby-value">1</span>
|
|
235
|
+
<span class="ruby-keyword">end</span>
|
|
236
|
+
<span class="ruby-identifier">quotes</span> = (<span class="ruby-identifier">string</span>[<span class="ruby-identifier">i</span>] <span class="ruby-operator">==</span> <span class="ruby-string">'"'</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword">true</span> <span class="ruby-operator">:</span> <span class="ruby-keyword">false</span>
|
|
237
|
+
<span class="ruby-identifier">i</span> <span class="ruby-operator">+=</span> <span class="ruby-value">1</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">string</span>[<span class="ruby-identifier">i</span>] <span class="ruby-operator">==</span> <span class="ruby-string">'"'</span>
|
|
238
|
+
<span class="ruby-keyword">return</span> [<span class="ruby-identifier">gen_exp</span>,<span class="ruby-identifier">i</span>,<span class="ruby-identifier">quotes</span>]
|
|
239
|
+
<span class="ruby-keyword">end</span></pre>
|
|
240
|
+
</div>
|
|
241
|
+
|
|
242
|
+
</div>
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
</div>
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
</section>
|
|
251
|
+
|
|
252
|
+
</section>
|
|
253
|
+
</main>
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<footer id="validator-badges" role="contentinfo">
|
|
257
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
|
258
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
|
259
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
260
|
+
</footer>
|
|
261
|
+
|
data/doc/Linmeric.html
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
|
|
7
|
+
<title>module Linmeric - RDoc Documentation</title>
|
|
8
|
+
|
|
9
|
+
<script type="text/javascript">
|
|
10
|
+
var rdoc_rel_prefix = "./";
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<script src="./js/jquery.js"></script>
|
|
14
|
+
<script src="./js/darkfish.js"></script>
|
|
15
|
+
|
|
16
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
|
17
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<body id="top" role="document" class="module">
|
|
22
|
+
<nav role="navigation">
|
|
23
|
+
<div id="project-navigation">
|
|
24
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
|
25
|
+
<h2>
|
|
26
|
+
<a href="./index.html" rel="home">Home</a>
|
|
27
|
+
</h2>
|
|
28
|
+
|
|
29
|
+
<div id="table-of-contents-navigation">
|
|
30
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
|
31
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
|
32
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
|
37
|
+
<form action="#" method="get" accept-charset="utf-8">
|
|
38
|
+
<div id="search-field-wrapper">
|
|
39
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
|
40
|
+
aria-autocomplete="list" aria-controls="search-results"
|
|
41
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
|
42
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
|
43
|
+
</div>
|
|
44
|
+
|
|
45
|
+
<ul id="search-results" aria-label="Search Results"
|
|
46
|
+
aria-busy="false" aria-expanded="false"
|
|
47
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
|
48
|
+
</form>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<div id="class-metadata">
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
</div>
|
|
62
|
+
</nav>
|
|
63
|
+
|
|
64
|
+
<main role="main" aria-labelledby="module-Linmeric">
|
|
65
|
+
<h1 id="module-Linmeric" class="module">
|
|
66
|
+
module Linmeric
|
|
67
|
+
</h1>
|
|
68
|
+
|
|
69
|
+
<section class="description">
|
|
70
|
+
|
|
71
|
+
</section>
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
<section class="constants-list">
|
|
83
|
+
<header>
|
|
84
|
+
<h3>Constants</h3>
|
|
85
|
+
</header>
|
|
86
|
+
<dl>
|
|
87
|
+
|
|
88
|
+
<dt id="VERSION">VERSION
|
|
89
|
+
|
|
90
|
+
<dd>
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
</dl>
|
|
94
|
+
</section>
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
</section>
|
|
101
|
+
</main>
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
<footer id="validator-badges" role="contentinfo">
|
|
105
|
+
<p><a href="http://validator.w3.org/check/referer">Validate</a>
|
|
106
|
+
<p>Generated by <a href="http://docs.seattlerb.org/rdoc/">RDoc</a> 4.2.0.
|
|
107
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
108
|
+
</footer>
|
|
109
|
+
|