Sha256: e8a8a12f8f77554ef0d89b210c25718396b68a3a07d4453bd1d75bf044f907d3
Contents?: true
Size: 346 Bytes
Versions: 10
Compression:
Stored size: 346 Bytes
Contents
# TITLE: # # Splice # # SUMMARY: # # Like #slice, but writes rather than reads. # # CREDIT: # # - Thomas Sawyer # class String alias_method :store, :[]= # Like #store, but acts like slice! # when given only one argument. def splice(*args) if args.size == 1 slice!(*args) else store(*args) end end end
Version data entries
10 entries across 10 versions & 1 rubygems