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
-
#initialize(val) ⇒ Token
constructor
Creates a new token with the specified value.
Constructor Details
#initialize(val) ⇒ Token
Creates a new token with the specified value
36 37 38 |
# File 'lib/pdf/reader/token.rb', line 36 def initialize (val) super end |