Flowdock
method

modseq_data

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: Net::IMAP::ResponseParser
modseq_data() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.