# :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 'facets/core/string/at' require 'facets/core/string/pop' require 'facets/core/string/push' require 'facets/core/string/shift' require 'facets/core/string/unshift' # I hate this name require 'facets/core/string/pot' # here's an alias for it