Method: Sequence#more_data?

Defined in:
lib/sequence.rb

#more_data?Boolean

is there any more data after the position?

Returns:

  • (Boolean)


511
512
513
514
# File 'lib/sequence.rb', line 511

def more_data?
  #!eof?
  (size-pos).nonzero?
end