method
soak_up_spaces
soak_up_spaces()
private
Hide source
# File lib/scanf.rb, line 673 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