method
modseq_data
ruby latest stable - Class:
Net::IMAP::ResponseParser
modseq_data()private
No documentation available.
# File lib/net/imap.rb, line 2863
def modseq_data
token = match(T_ATOM)
name = token.value.upcase
match(T_SPACE)
match(T_LPAR)
modseq = number
match(T_RPAR)
return name, modseq
end