# File lib/core/facets/array/splice.rb, line 17
  def splice(*args)
    if args.size == 1
      slice!(*args)
    else
      store(*args)
    end
  end