method
number
v2_5_5 -
Show latest stable
- Class:
Net::IMAP::ResponseParser
number()private
No documentation available.
# File lib/net/imap.rb, line 3326
def number
token = lookahead
if token.symbol == T_NIL
shift_token
return nil
end
token = match(T_NUMBER)
return token.value.to_i
end