# File lib/puppet/property/list.rb, line 12 12: def is_to_s(currentvalue) 13: if currentvalue == :absent 14: return "absent" 15: else 16: return currentvalue.join(delimiter) 17: end 18: end