File: ref_m_comparable.html

package info (click to toggle)
rubybook 0.2.1-1
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k, lenny, squeeze, wheezy
  • size: 4,248 kB
  • ctags: 1,042
  • sloc: xml: 60,486; makefile: 25
file content (182 lines) | stat: -rw-r--r-- 8,525 bytes parent folder | download | duplicates (3)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<html><title>Programming Ruby: The Pragmatic Programmer's Guide</title><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><STYLE TYPE="text/css"><!--
       BODY    { margin-left: 1in;
                 width: 6in;
                 font-family: helvetica, arial, sans-serif;
               }
       H1      { color: #000080;
                 font-family: helvetica, arial, sans-serif;
                 font-size: 22pt;
                 margin-left: 0in
               }
       H2      { color: #000080;  font: bold x-large helvetica, sans-serif;
                 margin-left: 0in }
       H3      { color: #000080;  font: bold   large helvetica, sans-serif; }
       H4      { color: #000080;  font: italic large helvetica, sans-serif; }
       .ruby   { background: #fff0f0 }
       .header { color: white }
       .subheader { color: #ffdddd }
       .sidebar   { width: 6in }
       span.sans { font-family: helvetica, arial, sans-serif }
       -->
   </STYLE><table bgcolor="#a03030" cellpadding="3" border="0" cellspacing="0"><tr><td colspan="3"><table bgcolor="#902020" cellpadding="20"><tr><td><h1 class="header">Programming Ruby</h1><h3 class="subheader">The Pragmatic Programmer's Guide</h3></td></tr></table></td></tr><tr><td width="33%" align="left"><a class="subheader" href="ref_c_trueclass.html">Previous &lt;</a></td><td width="33%" align="center" valign="middle"><a class="subheader" href="builtins.html">Contents ^</a><br></td><td width="33%" align="right"><a class="subheader" href="ref_m_enumerable.html">Next ></a><br></td></tr></table></head><body bgcolor="white">
<!--
    Copyright (c) 2001 by Addison Wesley Longman.  This
    material may be distributed only subject to the terms and
    conditions set forth in the Open Publication License, v1.0 or
    later (the latest version is presently available at
    http://www.opencontent.org/openpub/).
-->
<table><tr><td height="20"><img src="dot.gif" width="1" height="20"></td></tr></table><table border="0" width="100%" bgcolor="660066" cellpadding="10"><tr><td valign="center"><font color="white" size="7">module Comparable</font></td><td><table border="0"><tr><td><font color="white">
                Relies on:
              </font></td><td><font color="white">&lt;=></font></td></tr></table></td></tr></table><p></p><H3>Index:</H3><a href="#Comparisons"><i>Comparisons</i></a> <a href="#between_qm"><i>between?</i></a> <p></p><hr>
<P></P>
    The <code>Comparable</code> mixin is used by classes whose objects may be
  ordered.  The class must define the <code>&lt;=></code>  
  operator, which
  compares the receiver against another object, returning -1, 0,
  or +1 depending on whether the receiver is less than, equal to, or
  greater than the other object.  <code>Comparable</code> uses <code>&lt;=></code> to implement the
  conventional comparison operators (<code>&lt;</code>, <code>&lt;=</code>, <code>==</code>,
  <code>>=</code>, and <code>></code>) and the method <code>between?</code>.          
<P></P>

<table bgcolor="#fff0f0" cellspacing="0" border="0" cellpadding="3" width="500">
<tr>
<td colspan="3" valign="top"><code>class&nbsp;SizeMatters</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;include&nbsp;Comparable</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;attr&nbsp;:str</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;def&nbsp;&lt;=>(anOther)</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;&nbsp;&nbsp;str.size&nbsp;&lt;=>&nbsp;anOther.str.size</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;end</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;def&nbsp;initialize(str)</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;&nbsp;&nbsp;@str&nbsp;=&nbsp;str</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;end</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;def&nbsp;inspect</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;&nbsp;&nbsp;@str</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>&nbsp;&nbsp;end</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>end</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code></code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>s1&nbsp;=&nbsp;SizeMatters.new("Z")</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>s2&nbsp;=&nbsp;SizeMatters.new("YY")</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>s3&nbsp;=&nbsp;SizeMatters.new("XXX")</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>s4&nbsp;=&nbsp;SizeMatters.new("WWWW")</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code>s5&nbsp;=&nbsp;SizeMatters.new("VVVVV")</code></td>
</tr>
<tr>
<td colspan="3" valign="top"><code></code></td>
</tr>
<tr>
  <td valign="top"><code>s1&nbsp;&lt;&nbsp;s2</code></td>
  <td valign="top"></td>
  <td valign="top"><code>true</code></td>
</tr>
<tr>
  <td valign="top"><code>s4.between?(s1,&nbsp;s3)</code></td>
  <td valign="top"></td>
  <td valign="top"><code>false</code></td>
</tr>
<tr>
  <td valign="top"><code>s4.between?(s3,&nbsp;s5)</code></td>
  <td valign="top"></td>
  <td valign="top"><code>true</code></td>
</tr>
<tr>
  <td valign="top"><code>[&nbsp;s3,&nbsp;s2,&nbsp;s5,&nbsp;s4,&nbsp;s1&nbsp;].sort</code></td>
  <td valign="top"></td>
  <td valign="top"><code>[Z,&nbsp;YY,&nbsp;XXX,&nbsp;WWWW,&nbsp;VVVVV]</code></td>
</tr>
</table>
<P></P>

<P></P>
  <table border="0" width="100%" cellpadding="10"><tr><td valign="center" colspan="2" bgcolor="990066"><font color="white" size="6">instance methods
       </font></td></tr><tr><td valign="center" bgcolor="#ff9999"><font size="4"><a name="Comparisons"><b>Comparisons</b></a></font></td><td bgcolor="#ffaaaa">
                  <i>anObject</i> &lt;  <i>otherObject</i> -> <code>true</code> or <code>false</code><br><i>anObject</i> &lt;= <i>otherObject</i> -> <code>true</code> or <code>false</code><br><i>anObject</i> == <i>otherObject</i> -> <code>true</code> or <code>false</code><br><i>anObject</i> >= <i>otherObject</i> -> <code>true</code> or <code>false</code><br><i>anObject</i> >  <i>otherObject</i> -> <code>true</code> or <code>false</code><br>
      </td></tr><td></td><td>
<P></P>
      Compares two objects based on the receiver's <code>&lt;=></code> method.
<P></P>
      </td><tr><td valign="center" bgcolor="#ff9999"><font size="4"><a name="between_qm"><b>between?</b></a></font></td><td bgcolor="#ffaaaa">
        <i>anObject</i>.between?( <i>min</i>, <i>max</i> )
        -> <code>true</code> or <code>false</code>
      </td></tr><td></td><td>
<P></P>
      Returns <code>false</code> if <i>anObject</i>&nbsp;<code>&lt;=></code>&nbsp;<i>min</i> is less than
      zero or if <i>anObject</i>&nbsp;<code>&lt;=></code>&nbsp;<i>max</i> is greater than zero,
      <code>true</code> otherwise.
<P></P>

<table bgcolor="#fff0f0" cellspacing="0" border="0" cellpadding="3" width="500">
<tr>
  <td valign="top"><code>3.between?(1,&nbsp;5)</code></td>
  <td valign="top"></td>
  <td valign="top"><code>true</code></td>
</tr>
<tr>
  <td valign="top"><code>6.between?(1,&nbsp;5)</code></td>
  <td valign="top"></td>
  <td valign="top"><code>false</code></td>
</tr>
<tr>
  <td valign="top"><code>'cat'.between?('ant',&nbsp;'dog')</code></td>
  <td valign="top"></td>
  <td valign="top"><code>true</code></td>
</tr>
<tr>
  <td valign="top"><code>'gnu'.between?('ant',&nbsp;'dog')</code></td>
  <td valign="top"></td>
  <td valign="top"><code>false</code></td>
</tr>
</table>
<P></P>

<P></P>
      </td></table>
<P></P>

<p></p><hr><table bgcolor="#a03030" cellpadding="10" border="0" cellspacing="0"><tr><td width="33%" align="left"><a class="subheader" href="ref_c_trueclass.html">Previous &lt;</a></td><td width="33%" align="center" valign="middle"><a class="subheader" href="builtins.html">Contents ^</a><br></td><td width="33%" align="right"><a class="subheader" href="ref_m_enumerable.html">Next ></a><br></td></tr></table><p></p><font size="-1">Extracted from the book "Programming Ruby -
     The Pragmatic Programmer's Guide"</font><br><font size="-3">
      Copyright
      &#169;
      2000 Addison Wesley Longman, Inc. Released under the terms of the
      <a href="http://www.opencontent.org/openpub/">Open Publication License</a> V1.0.
        <br>
      This reference is available for
        <a href="http://www.pragmaticprogrammer.com/ruby/downloads/book.html">download</a>.
   </font></body></html>