Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 14, 2017 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shankardevy/f83ef8cee9beb0cfc804c7e2bf8f62c5 to your computer and use it in GitHub Desktop.
Save shankardevy/f83ef8cee9beb0cfc804c7e2bf8f62c5 to your computer and use it in GitHub Desktop.
defmodule Mango.Catalog do
alias Mango.Catalog.Product
def list_products do
product1 = %Product{ name: "Tomato", price: 50, is_seasonal: false, category: "vegetables" }
product2 = %Product{ name: "Apple", price: 100, is_seasonal: true, category: "fruits" }
[product1, product2]
end
def list_seasonal_products do
list_products()
|> Enum.filter(fn(product) -> product.is_seasonal == true end)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment