Class: PDF::Reader::Token

Inherits:
String
  • Object
show all
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

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