Sha256: b4794acfa24ca6bbdd4ccce42b3dc2fc21dbb14f18b99fed0ed68938e6aa2078

Contents?: true

Size: 420 Bytes

Versions: 21

Compression:

Stored size: 420 Bytes

Contents

# :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?)

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
facets-1.8.8 lib/facets/core/string_as_array.rb