Method: RubbishCode::StudentListFormat#get_students_slice

Defined in:
lib/source/student_list_format.rb

#get_students_slice(k, count) ⇒ Object



37
38
39
40
# File 'lib/source/student_list_format.rb', line 37

def get_students_slice(k, count)
    from = [k * count, self.students.count].min
    to = [self.students.count, from + count].min
end