doc/CSVDecision/Matchers/Matcher.html in csv_decision-0.0.6 vs doc/CSVDecision/Matchers/Matcher.html in csv_decision-0.0.7
- old
+ new
@@ -60,11 +60,11 @@
</div>
<div id="content"><h1>Class: CSVDecision::Matchers::Matcher
<span class="abstract note title">Abstract</span>
-
+ <span class="private note title">Private</span>
</h1>
<div class="box_info">
<dl>
<dt>Inherits:</dt>
@@ -99,11 +99,15 @@
</div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
- <div class="note abstract">
+ <p class="note private">
+ <strong>This class is part of a private API.</strong>
+ You should avoid using this class if possible, as it may be removed or be changed in the future.
+</p>
+<div class="note abstract">
<strong>This class is abstract.</strong>
<div class='inline'>
<p>Subclass and override <span class='object_link'><a href="#matches%3F-instance_method" title="CSVDecision::Matchers::Matcher#matches? (method)">#matches?</a></span> to implement a custom Matcher class.</p>
</div>
</div>
@@ -114,11 +118,11 @@
<div class="tags">
</div><div id="subclasses">
<h2>Direct Known Subclasses</h2>
- <p class="children"><span class='object_link'><a href="Constant.html" title="CSVDecision::Matchers::Constant (class)">Constant</a></span>, <span class='object_link'><a href="Function.html" title="CSVDecision::Matchers::Function (class)">Function</a></span>, <span class='object_link'><a href="Numeric.html" title="CSVDecision::Matchers::Numeric (class)">Numeric</a></span>, <span class='object_link'><a href="Pattern.html" title="CSVDecision::Matchers::Pattern (class)">Pattern</a></span>, <span class='object_link'><a href="Range.html" title="CSVDecision::Matchers::Range (class)">Range</a></span>, <span class='object_link'><a href="Symbol.html" title="CSVDecision::Matchers::Symbol (class)">Symbol</a></span></p>
+ <p class="children"><span class='object_link'><a href="Constant.html" title="CSVDecision::Matchers::Constant (class)">Constant</a></span>, <span class='object_link'><a href="Function.html" title="CSVDecision::Matchers::Function (class)">Function</a></span>, <span class='object_link'><a href="Guard.html" title="CSVDecision::Matchers::Guard (class)">Guard</a></span>, <span class='object_link'><a href="Numeric.html" title="CSVDecision::Matchers::Numeric (class)">Numeric</a></span>, <span class='object_link'><a href="Pattern.html" title="CSVDecision::Matchers::Pattern (class)">Pattern</a></span>, <span class='object_link'><a href="Range.html" title="CSVDecision::Matchers::Range (class)">Range</a></span>, <span class='object_link'><a href="Symbol.html" title="CSVDecision::Matchers::Symbol (class)">Symbol</a></span></p>
</div>
@@ -147,11 +151,11 @@
-
+ <span class="private note title">private</span>
<span class="summary_desc"><div class='inline'>
<p>A new instance of Matcher.</p>
</div></span>
@@ -160,31 +164,79 @@
<li class="public ">
<span class="summary_signature">
- <a href="#matches%3F-instance_method" title="#matches? (instance method)">#<strong>matches?</strong>(cell) ⇒ false, CSVDecision::Proc </a>
+ <a href="#ins%3F-instance_method" title="#ins? (instance method)">#<strong>ins?</strong> ⇒ Boolean </a>
</span>
+ <span class="private note title">private</span>
+
+ <span class="summary_desc"><div class='inline'>
+<p>Does this matcher apply to output cells?.</p>
+</div></span>
+
+</li>
+
+ <li class="public ">
+ <span class="summary_signature">
+
+ <a href="#matches%3F-instance_method" title="#matches? (instance method)">#<strong>matches?</strong>(cell) ⇒ false, CSVDecision::Proc </a>
+
+
+
+ </span>
+
+
+
+
+
+ <span class="private note title">private</span>
+
+
<span class="summary_desc"><div class='inline'>
<p>Determine if the input cell string is recognised by this Matcher.</p>
</div></span>
</li>
+ <li class="public ">
+ <span class="summary_signature">
+
+ <a href="#outs%3F-instance_method" title="#outs? (instance method)">#<strong>outs?</strong> ⇒ Boolean </a>
+
+
+
+ </span>
+
+
+
+
+
+
+ <span class="private note title">private</span>
+
+
+ <span class="summary_desc"><div class='inline'>
+<p>Does this matcher apply to output cells?.</p>
+</div></span>
+
+</li>
+
+
</ul>
<div id="constructor_details" class="method_details_list">
<h2>Constructor Details</h2>
@@ -198,11 +250,15 @@
</h3><div class="docstring">
<div class="discussion">
-
+ <p class="note private">
+ <strong>This method is part of a private API.</strong>
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
+</p>
+
<p>Returns a new instance of Matcher</p>
</div>
</div>
@@ -213,14 +269,14 @@
<tr>
<td>
<pre class="lines">
-139</pre>
+130</pre>
</td>
<td>
- <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 139</span>
+ <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 130</span>
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid__options'>_options</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
</td>
</tr>
</table>
@@ -232,21 +288,88 @@
<div id="instance_method_details" class="method_details_list">
<h2>Instance Method Details</h2>
<div class="method_details first">
- <h3 class="signature first" id="matches?-instance_method">
+ <h3 class="signature first" id="ins?-instance_method">
- #<strong>matches?</strong>(cell) ⇒ <tt>false</tt>, <tt><span class='object_link'><a href="../../CSVDecision.html#Proc-constant" title="CSVDecision::Proc (constant)">CSVDecision::Proc</a></span></tt>
+ #<strong>ins?</strong> ⇒ <tt>Boolean</tt>
</h3><div class="docstring">
<div class="discussion">
+ <p class="note private">
+ <strong>This method is part of a private API.</strong>
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
+</p>
+
+<p>Does this matcher apply to output cells?</p>
+
+
+ </div>
+</div>
+<div class="tags">
+
+<p class="tag_title">Returns:</p>
+<ul class="return">
+
+ <li>
+
+
+ <span class='type'>(<tt>Boolean</tt>)</span>
+
+
+
+ —
+ <div class='inline'>
+<p>Return true if this matcher applies to input cells, false otherwise.</p>
+</div>
+
+ </li>
+
+</ul>
+
+</div><table class="source_code">
+ <tr>
+ <td>
+ <pre class="lines">
+
+
+152
+153
+154</pre>
+ </td>
+ <td>
+ <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 152</span>
+
+<span class='kw'>def</span> <span class='id identifier rubyid_ins?'>ins?</span>
+ <span class='kw'>true</span>
+<span class='kw'>end</span></pre>
+ </td>
+ </tr>
+</table>
+</div>
+ <div class="method_details ">
+ <h3 class="signature " id="matches?-instance_method">
+
+ #<strong>matches?</strong>(cell) ⇒ <tt>false</tt>, <tt>CSVDecision::Proc</tt>
+
+
+
+
+
+</h3><div class="docstring">
+ <div class="discussion">
+ <p class="note private">
+ <strong>This method is part of a private API.</strong>
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
+</p>
+
<p>Determine if the input cell string is recognised by this Matcher.</p>
</div>
</div>
@@ -276,11 +399,11 @@
<ul class="return">
<li>
- <span class='type'>(<tt>false</tt>, <tt><span class='object_link'><a href="../../CSVDecision.html#Proc-constant" title="CSVDecision::Proc (constant)">CSVDecision::Proc</a></span></tt>)</span>
+ <span class='type'>(<tt>false</tt>, <tt>CSVDecision::Proc</tt>)</span>
—
<div class='inline'>
@@ -297,26 +420,89 @@
<tr>
<td>
<pre class="lines">
-146</pre>
+138</pre>
</td>
<td>
- <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 146</span>
+ <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 138</span>
<span class='kw'>def</span> <span class='id identifier rubyid_matches?'>matches?</span><span class='lparen'>(</span><span class='id identifier rubyid_cell'>cell</span><span class='rparen'>)</span><span class='semicolon'>;</span> <span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
+ <div class="method_details ">
+ <h3 class="signature " id="outs?-instance_method">
+
+ #<strong>outs?</strong> ⇒ <tt>Boolean</tt>
+
+
+
+
+
+</h3><div class="docstring">
+ <div class="discussion">
+ <p class="note private">
+ <strong>This method is part of a private API.</strong>
+ You should avoid using this method if possible, as it may be removed or be changed in the future.
+</p>
+
+<p>Does this matcher apply to output cells?</p>
+
+
</div>
+</div>
+<div class="tags">
+
+<p class="tag_title">Returns:</p>
+<ul class="return">
+
+ <li>
+
+
+ <span class='type'>(<tt>Boolean</tt>)</span>
+
+
+
+ —
+ <div class='inline'>
+<p>Return true if this matcher applies to output cells, false otherwise.</p>
+</div>
+
+ </li>
+
+</ul>
+</div><table class="source_code">
+ <tr>
+ <td>
+ <pre class="lines">
+
+
+144
+145
+146</pre>
+ </td>
+ <td>
+ <pre class="code"><span class="info file"># File 'lib/csv_decision/matchers.rb', line 144</span>
+
+<span class='kw'>def</span> <span class='id identifier rubyid_outs?'>outs?</span>
+ <span class='kw'>false</span>
+<span class='kw'>end</span></pre>
+ </td>
+ </tr>
+</table>
</div>
+
+ </div>
+</div>
+
<div id="footer">
- Generated on Tue Dec 26 21:20:20 2017 by
+ Generated on Sat Dec 30 13:04:05 2017 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.9.12 (ruby-2.3.0).
</div>
</div>
\ No newline at end of file