class MailParser::RFC2822::MsgIdList
Public Class Methods
new(val=nil)
click to toggle source
# File lib/mailparser/rfc2822.rb, line 128 def initialize(val=nil) self << val if val end
Public Instance Methods
to_s()
click to toggle source
# File lib/mailparser/rfc2822.rb, line 131 def to_s() self.map{|i| i.to_s}.join(" ") end