# :title: String as Character Array # # The ideas here is to have string be polymorphic # as an array of characters. While not 100% # it is nearly so (getting there). # # "123".pop # => "12" # require 'facet/string/at' require 'facet/string/pop' require 'facet/string/push' require 'facet/string/shift' require 'facet/string/unshift' # I hate this name require 'facet/string/slap' # alias for it (better name?)