Method: Sequence#empty?

Defined in:
lib/sequence.rb

#empty?Boolean

is there any data in the sequence?

Returns:

  • (Boolean)


534
535
536
# File 'lib/sequence.rb', line 534

def empty?
  size==0
end