class PDF::Reader::EventPoint
Utility class used to avoid modifying the underlying TextRun
objects while we’re looking for duplicates
Attributes
run[R]
x[R]
Public Class Methods
new(x, run)
click to toggle source
# File lib/pdf/reader/overlapping_runs_filter.rb, line 62 def initialize(x, run) @x = x @run = run end
Public Instance Methods
start?()
click to toggle source
# File lib/pdf/reader/overlapping_runs_filter.rb, line 67 def start? @x == @run.x end