Sha256: e5a8dcf54a67c9e27077290e3118ce3e03a50e5025c3b6a425ac3d31a231a287
Contents?: true
Size: 860 Bytes
Versions: 1
Compression:
Stored size: 860 Bytes
Contents
# frozen_string_literal: true module RASN1 module Types # @abstract This class SHOULD be used as base class for all ASN.1 primitive # types. # Base class for all ASN.1 constructed types # @author Sylvain Daubert class Constructed < Base # Constructed value ASN1_PC = 0x20 def inspect(level=0) case @value when Array str = common_inspect(level) str << "\n" level = level.abs + 1 @value.each do |item| case item when Base, Model next if item.optional? && item.value.nil? str << "#{item.inspect(level)}\n" else str << ' ' * level str << "#{item.inspect}\n" end end str else super end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rasn1-0.8.0 | lib/rasn1/types/constructed.rb |