Sha256: 5edfb721afcc4103576d81e297b7788035048e5b6aafe7035a12087c5509047f
Contents?: true
Size: 513 Bytes
Versions: 32
Compression:
Stored size: 513 Bytes
Contents
# frozen_string_literal: true module Puppet::Pops module Serialization # An instance writer is responsible for writing complex objects using a {Serializer} # @api private module InstanceWriter # @param [Types::PObjectType] type the type of instance to write # @param [Object] value the instance # @param [Serializer] serializer the serializer that will receive the written instance def write(type, value, serializer) Serialization.not_implemented(self, 'write') end end end end
Version data entries
32 entries across 32 versions & 1 rubygems