Class: Elf::Dynamic::TimestampEntry

Inherits:
Entry
  • Object
show all
Defined in:
lib/elf/dynamic.rb

Overview

An entry for a timestamp value

Instance Attribute Summary

Attributes inherited from Entry

#type, #value

Instance Method Summary collapse

Methods inherited from Entry

#initialize

Constructor Details

This class inherits a constructor from Elf::Dynamic::Entry

Instance Method Details

#parsedObject



196
197
198
199
# File 'lib/elf/dynamic.rb', line 196

def parsed
  @parsed = Time.at(@value) unless @parsed
  return @parsed
end