Sha256: f37a7a16c4320e63e38e3e03674c4255a084ea74c507c12c4ef8f4e852428c41

Contents?: true

Size: 751 Bytes

Versions: 26

Compression:

Stored size: 751 Bytes

Contents

class String

  # Polymorphic with Array of characters.
  def push(str=' ')
    concat(str)
  end

end


#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCString < Test::Unit::TestCase

    def setup
      @a =  ""
    end

    def test_001
      #assert_raises( ArgumentError ) { @a.push }
      assert_raises( ArgumentError ) { @a.push(1,2) }
    end

    def test_002
      assert_equal( "0", @a.push("0") )
      assert_equal( "01", @a.push("1") )
      assert_equal( "012", @a.push("2") )
      assert_equal( "0123", @a.push("3") )
      assert_equal( "01234", @a.push("4") )
      assert_equal( "012345", @a.push("5") )
    end

  end

=end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
facets-0.9.0 lib/nano/string/push.rb
facets-1.0.3 packages/core/lib/facet/string/push.rb
facets-1.0.0 lib/facet/string/push.rb
facets-1.2.1 lib/facets/core/string/push.rb
facets-1.1.0 lib/facet/string/push.rb
facets-1.2.0 lib/facets/core/string/push.rb
facets-1.3.0 lib/facets/core/string/push.rb
facets-1.3.1 lib/facets/core/string/push.rb
facets-1.3.3 lib/facets/core/string/push.rb
facets-1.3.2 lib/facets/core/string/push.rb
facets-1.4.0 lib/facets/core/string/push.rb
facets-1.4.1 lib/facets/core/string/push.rb
facets-1.4.2 lib/facets/core/string/push.rb
facets-1.4.3 lib/facets/core/string/push.rb
facets-1.4.5 lib/facets/core/string/push.rb
facets-1.4.4 lib/facets/core/string/push.rb
facets-1.7.30 lib/facets/core/string/push.rb
facets-1.7.0 lib/facets/core/string/push.rb
facets-1.7.38 lib/facets/core/string/push.rb
facets-1.7.46 lib/facets/core/string/push.rb