Class: PDF::Reader::Token
- Inherits:
-
String
- Object
- String
- PDF::Reader::Token
- Defined in:
- lib/pdf/reader/token.rb
Overview
An internal PDF::Reader class that represents a single token from a PDF file.
Behaves exactly like a Ruby String - it basically exists for convenience.
Instance Method Summary (collapse)
-
- (Token) initialize(val)
constructor
Creates a new token with the specified value.
Constructor Details
- (Token) initialize(val)
Creates a new token with the specified value
34 35 36 |
# File 'lib/pdf/reader/token.rb', line 34 def initialize (val) super end |