# File lib/stella/core_ext.rb, line 363
  def self.unpack(str)
    return ArgumentError, "Cannot unpack nil" if str.nil?
    a = str.split(',')
    me = new
    me.update *a
  end