method
soak_up_spaces
v1_9_1_378 -
Show latest stable
- Class:
IO
soak_up_spaces()private
No documentation available.
# File lib/scanf.rb, line 645
def soak_up_spaces
c = getc
ungetc(c) if c
until eof ||! c || /\S/.match(c.chr)
c = getc
end
ungetc(c) if (c && /\S/.match(c.chr))
end