Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/Function-composition/Elixir/function-composition.elixir
Normal file
11
Task/Function-composition/Elixir/function-composition.elixir
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
defmodule RC do
|
||||
def compose(f, g), do: fn(x) -> f.(g.(x)) end
|
||||
|
||||
def multicompose(fs), do: List.foldl(fs, fn(x) -> x end, &compose/2)
|
||||
end
|
||||
|
||||
sin_asin = RC.compose(&:math.sin/1, &:math.asin/1)
|
||||
IO.puts sin_asin.(0.5)
|
||||
|
||||
IO.puts RC.multicompose([&:math.sin/1, &:math.asin/1, fn x->1/x end]).(0.5)
|
||||
IO.puts RC.multicompose([&(&1*&1), &(1/&1), &(&1*&1)]).(0.5)
|
||||
Loading…
Add table
Add a link
Reference in a new issue