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