Module: Net::IMAP::ResponseParser::Patterns::RFC5234
    Do not use.  This module is for internal use only.
  
| Relationships & Source Files | |
| Extension / Inclusion / Inheritance Descendants | |
| Included In: | |
| Defined in: | lib/net/imap/response_parser.rb | 
Overview
From RFC5234, “Augmented BNF for Syntax Specifications: ABNF”
ALPHA = %x41-5A / %x61-7A ; A-Z / a-z CHAR = %x01-7F CRLF = CR LF
; Internet standard newlineCTL = %x00-1F / %x7F
; controlsDIGIT = %x30-39
; 0-9DQUOTE = %x22
; " (Double Quote)HEXDIG = DIGIT / “A” / “B” / “C” / “D” / “E” / “F” OCTET = %x00-FF SP = %x20
Constant Summary
- 
    ALPHA =
    
 # File 'lib/net/imap/response_parser.rb', line 109/[A-Za-z]/n
- 
    CHAR =
    
 # File 'lib/net/imap/response_parser.rb', line 110/[\x01-\x7f]/n
- 
    CRLF =
    
 # File 'lib/net/imap/response_parser.rb', line 111/\r\n/n
- 
    CTL =
    
 # File 'lib/net/imap/response_parser.rb', line 112/[\x00-\x1F\x7F]/n
- 
    DIGIT =
    
 # File 'lib/net/imap/response_parser.rb', line 113/\d/n
- 
    DQUOTE =
    
 # File 'lib/net/imap/response_parser.rb', line 114/"/n
- 
    HEXDIG =
    
 # File 'lib/net/imap/response_parser.rb', line 115/\h/
- 
    OCTET =
    # File 'lib/net/imap/response_parser.rb', line 116not using /./m for embedding purposes /[\x00-\xFF]/n
- 
    SP =
    
 # File 'lib/net/imap/response_parser.rb', line 117/ /n