module Utils::IRB::String

def >>(filename)

Returns:
  • (Integer) - the number of bytes written to the file

Parameters:
  • filename (String) -- the path to the file where the string content will be written
def >>(filename)
  File.secure_write(filename, self)
end