--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: If integer is greater than the length of str, returns a new String of length integer with str right justified and padded with padstr; otherwise, returns str. - !ruby/struct:SM::Flow::VERB body: " "hello".rjust(4) #=> "hello"\n "hello".rjust(20) #=> " hello"\n "hello".rjust(20, '1234') #=> "123412341234123hello"\n" full_name: String#rjust is_singleton: false name: rjust params: | str.rjust(integer, padstr=' ') => new_str visibility: public