<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>eql? (RMail::Address)</title>
<link rel=StyleSheet href="../../.././rdoc-style.css" type="text/css" media="screen" />
</head>
<body bgcolor="white">
<pre><span class="cmt"># File lib/rmail/address.rb, line 97</span>
<span class="kw">def</span> eql?(other)
raise TypeError <span class="kw">unless</span> other.kind_of?(RMail::Address)
@local.eql?(other.local) <span class="kw">and</span> @domain.eql?(other.domain)
<span class="kw">end</span></pre>
</body>
</html>
|