Sha256: 69e9e29e77ad89d9adcb79878fbc7b5e348c4e73b3cba24786a67b5791ba0f78
Contents?: true
Size: 359 Bytes
Versions: 16
Compression:
Stored size: 359 Bytes
Contents
# typed: true module Datadog module Profiling module Pprof # Pprof output data. # Includes encoded data and list of types. Payload = Struct.new(:data, :types) do def initialize(data, types) super self.types = types || [] end def to_s data end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems