X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=doc%2FString.html;fp=doc%2FString.html;h=8b23e0d84ed0a33fa9f1619c7ad855285100bb53;hb=7c9314f502cde8daad23b61d10b24a542e04154a;hp=0000000000000000000000000000000000000000;hpb=d1f1649ba43c5cbc43c4beb2380096ba051d646a;p=packages%2Fprecise%2Fmcollective.git diff --git a/doc/String.html b/doc/String.html new file mode 100644 index 0000000..8b23e0d --- /dev/null +++ b/doc/String.html @@ -0,0 +1,435 @@ + + + + + + + Class: String + + + + + + + + + + + +
+
+
+

In Files

+ +
+ + +
+ +
+ + + +
+

Parent

+ + + +
+ + + + + + + +
+

Methods

+ +
+ + + + +
+ +
+ + + + + +
+

Class Index + [+]

+
+
+ Quicksearch + +
+
+ + + +
+ + +
+
+ +
+

String

+ +
+

+start_with? was introduced in 1.8.7, we need to support 1.8.5 and 1.8.6 +

+ +
+ + + + + + + + + +
+

Public Instance Methods

+ + +
+ + +
+ + bytes(&block) + click to toggle source + +
+ +
+ +

(Not documented)

+ + + +
+
+    # File lib/mcollective/monkey_patches.rb, line 63
+63:   def bytes(&block)
+64:     # This should not be necessary, really ...
+65:     require 'enumerator'
+66:     return to_enum(:each_byte) unless block_given?
+67:     each_byte(&block)
+68:   end
+
+ +
+ + +
+ + +
+ + +
+ + start_with?(str) + click to toggle source + +
+ +
+ +

(Not documented)

+ + + +
+
+   # File lib/mcollective/monkey_patches.rb, line 4
+4:   def start_with?(str)
+5:     return self[0 .. (str.length-1)] == str
+6:   end
+
+ +
+ + +
+ + +
+ + +
+ + +
+ +

Disabled; run with --debug to generate this.

+ +
+ +
+

[Validate]

+

Generated with the Darkfish + Rdoc Generator 1.1.6.

+
+ + + +