Method: RubbishCode::StudentListFormat#get_student

Defined in:
lib/source/student_list_format.rb

#get_student(id) ⇒ Object



18
19
20
21
22
# File 'lib/source/student_list_format.rb', line 18

def get_student(id)
    self.students.detect { |x|
        x.id == id .to_s
    }
end