= private = protected
lstrip()
Returns a copy of str with leading whitespace removed. See also String#rstrip and String#strip.
" hello ".lstrip #=> "hello " "hello".lstrip #=> "hello"
static VALUE rb_str_lstrip(VALUE str) { str = rb_str_dup(str); rb_str_lstrip_bang(str); return str; }