method

soak_up_spaces

v1_8_7_72 - Show latest stable - Class: IO
soak_up_spaces()
private

No documentation available.

# File lib/scanf.rb, line 644
  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