Sha256: 047d079f5f963578d2c539d74f0aa3022d9c18a96c5913539f150b57deb6fe66

Contents?: true

Size: 716 Bytes

Versions: 19

Compression:

Stored size: 716 Bytes

Contents

class String

  # Like push but works from the other end of the string.

  def pot( str=' ' )
    insert(0, str)
  end

end


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

  require 'test/unit'

  class TCString < Test::Unit::TestCase

    def setup
      @a =  ""
    end

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

    def test_002
      assert_equal( "0", @a.pot("0") )
      assert_equal( "10", @a.pot("1") )
      assert_equal( "210", @a.pot("2") )
      assert_equal( "3210", @a.pot("3") )
      assert_equal( "43210", @a.pot("4") )
      assert_equal( "543210", @a.pot("5") )
    end

  end

=end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
facets-1.3.1 lib/facets/core/string/pot.rb
facets-1.3.2 lib/facets/core/string/pot.rb
facets-1.3.3 lib/facets/core/string/pot.rb
facets-1.4.2 lib/facets/core/string/pot.rb
facets-1.4.0 lib/facets/core/string/pot.rb
facets-1.4.1 lib/facets/core/string/pot.rb
facets-1.4.3 lib/facets/core/string/pot.rb
facets-1.4.4 lib/facets/core/string/pot.rb
facets-1.4.5 lib/facets/core/string/pot.rb
facets-1.7.38 lib/facets/core/string/pot.rb
facets-1.7.0 lib/facets/core/string/pot.rb
facets-1.7.30 lib/facets/core/string/pot.rb
facets-1.7.46 lib/facets/core/string/pot.rb
facets-1.8.0 lib/facets/core/string/pot.rb
facets-1.8.20 lib/facets/core/string/pot.rb
facets-1.8.51 lib/facets/core/string/pot.rb
facets-1.8.49 lib/facets/core/string/pot.rb
facets-1.8.54 lib/facets/core/string/pot.rb
facets-1.8.8 lib/facets/core/string/pot.rb