class String

Extend String with capability to convert itself to {FileStr}.

Public Class Methods

fileStr() click to toggle source

Use FileStr method directly in String.

# File lib/filestr.rb, line 213
def String.fileStr
    FileStr.extend( String )
end

Public Instance Methods

fs()
Alias for: toFileStr
toFileStr() click to toggle source

Convert String to FileStr object.

# File lib/filestr.rb, line 218
def toFileStr
    FileStr.new( self )
end
Also aliased as: to_fs, fs
to_fs()
Alias for: toFileStr