Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the required classes #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Added the required classes #4

wants to merge 1 commit into from

Conversation

alexandru-lungeanu
Copy link

No description provided.

def find_by_description(description)
@items.each do |x|
if x.description == description
x
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gah, aici a fost testul meu oribil.

Ce se intampla aici e ca find_by_description iti returneaza valoarea returnata de ultima instructiune executata, respectiv .each.

.each, in cazul lui array, returneaza array-ul peste care a iterat, adica in acest caz, @items.

Implementarea asta ar merge in cazul in care aici ai pune un return explicit, care in cazul ala ar si iesi din toata metoda, eventual urmat de un nil dupa .each, astfel incat valoarea returnata daca nu gaseste ceva sa fie nil, nu array-ul in sine.

De asemenea, dacă îl faci pe find_by_description așa, poți să-ți simplifici și set_as_done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants