Sha256: 94fa2705e5cce4fb80ebf62290e102b16019c6688df66e6bf4274e64825d731b
Contents?: true
Size: 388 Bytes
Versions: 5
Compression:
Stored size: 388 Bytes
Contents
# frozen_string_literal: true module Axlsx # A collection of Cfvo objects that initializes with the required # first two items class Cfvos < SimpleTypedList def initialize super(Cfvo) end # Serialize the Cfvo object # @param [String] str # @return [String] def to_xml_string(str = +'') each { |cfvo| cfvo.to_xml_string(str) } end end end
Version data entries
5 entries across 5 versions & 2 rubygems