Sha256: dd60b8a9eae83ce9c9c11264d8a76a82f9f21d6b2250088bf154ed2350c6a0dd
Contents?: true
Size: 358 Bytes
Versions: 6
Compression:
Stored size: 358 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
6 entries across 6 versions & 1 rubygems