Popularity
1.2
Growing
Activity
0.0
Stable
4
2
1

Monthly Downloads: 30
Programming language: Elixir
License: MIT License
Latest version: v0.0.7

minmaxlist alternatives and similar packages

Based on the "Algorithms and Data structures" category.
Alternatively, view minmaxlist alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of minmaxlist or a related project?

Add another 'Algorithms and Data structures' Package

README

Minmaxlist

Build Status Hex.pm Version

Elixir library extending Enum.min_by/2, Enum.max_by/2 and Enum.min_max_by/2 to return a list of results instead of just one.

This enables searching for all matching results based multiple min/max value criteria. See Examples.

Documentation

API documentation is available at http://hexdocs.pm/minmaxlist

Adding Minmaxlist To Your Project

To use Minmaxlist with your projects, edit your mix.exs file and add it as a dependency:

defp deps do
  [
    {:minmaxlist, "~> x.x.x"},
  ]
end

Examples

Minmaxlist is designed to assist in filtering result sets by min/max value while returning list of results that matches the requirement. This is especially useful for example,

Find the youngest people with highest income.

import Minmaxlist
[
  %{name: "A", age: 24, income: 4000},
  %{name: "B", age: 22, income: 3300},
  %{name: "C", age: 22, income: 2800},
  %{name: "D", age: 25, income: 5000},
  %{name: "E", age: 22, income: 3300},
  %{name: "F", age: 25, income: 5500},
  %{name: "G", age: 24, income: 4500},
] |> min_list_by(&(&1.age)) |> max_list_by(&(&1.income))
# => [%{name: "B", age: 22, income: 3300}, %{name: "E", age: 22, income: 3300}]

Find the youngest and oldest people,

import Minmaxlist
[
  %{name: "A", age: 24, income: 4000},
  %{name: "B", age: 22, income: 3300},
  %{name: "C", age: 22, income: 2800},
  %{name: "D", age: 25, income: 5000},
  %{name: "E", age: 22, income: 3300},
  %{name: "F", age: 25, income: 5500},
  %{name: "G", age: 24, income: 4500},
] |> min_max_list_by(&(&1.age))
# => {
#   [%{name: "B", age: 22, income: 3300}, %{name: "C", age: 22, income: 2800}, %{name: "E", age: 22, income: 3300}],
#   [%{name: "D", age: 25, income: 5000}, %{name: "F", age: 25, income: 5500}]
# }

LICENSE

This software is licensed under [MIT License](LICENSE.md).


*Note that all licence references and agreements mentioned in the minmaxlist README section above are relevant to that project's source code only.