# File common/lib/symbiosis/ipaddr.rb, line 40
  def include?(other)
    raise ArgumentError unless other.is_a?(Symbiosis::IPAddr)
    other >= self.min and other <= self.max
  end