class PDF::Reader::EventPoint

Utility class used to avoid modifying the underlying TextRun objects while we’re looking for duplicates

Attributes

x[R]

: Numeric

Public Class Methods

new(x, run) click to toggle source

: (Numeric, PDF::Reader::TextRun) -> void

# File lib/pdf/reader/overlapping_runs_filter.rb, line 67
def initialize(x, run)
  @x = x
  @run = run
end

Public Instance Methods

start?() click to toggle source

: () -> bool

# File lib/pdf/reader/overlapping_runs_filter.rb, line 73
def start?
  @x == @run.x
end