Class/Module Index [+]

Quicksearch

TMail::ReferencesHeader

Public Instance Methods

each_id() click to toggle source
# File lib/tmail/header.rb, line 435
def each_id
  self.refs.each do |i|
    yield i if MESSAGE_ID === i
  end
end
each_phrase() click to toggle source
# File lib/tmail/header.rb, line 446
def each_phrase
  self.refs.each do |i|
    yield i unless MESSAGE_ID === i
  end
end
ids() click to toggle source
# File lib/tmail/header.rb, line 441
def ids
  ensure_parsed
  @ids
end
phrases() click to toggle source
# File lib/tmail/header.rb, line 452
def phrases
  ret = []
  each_phrase {|i| ret.push i }
  ret
end
refs() click to toggle source
# File lib/tmail/header.rb, line 430
def refs
  ensure_parsed
  @refs
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.