# File lib/stella/core_ext.rb, line 397
  def sum ; self.inject(0){|a,x| next if x.nil? || a.nil?; x+a} ; end