Method: Polars::StringNameSpace#ljust
- Defined in:
- lib/polars/string_name_space.rb
#ljust(width, fillchar = " ") ⇒ Series
Return the string left justified in a string of length width
.
Padding is done using the specified fillchar
. The original string is
returned if width
is less than or equal to s.length
.
774 775 776 |
# File 'lib/polars/string_name_space.rb', line 774 def ljust(width, fillchar = " ") super end |