class PDF::Reader::GlyphHash::ReturnData

An internal class for returning multiple pieces of data and keep sorbet happy

Attributes

by_codepoint[R]

: Hash[Integer, Array]

by_name[R]

: Hash[Symbol, Integer]

Public Class Methods

new(by_name, by_codepoint) click to toggle source

:(Hash[Symbol, Integer], Hash[Integer, Array]) -> void

# File lib/pdf/reader/glyph_hash.rb, line 47
def initialize(by_name, by_codepoint)
  @by_name = by_name
  @by_codepoint = by_codepoint
end