summaryrefslogtreecommitdiff
path: root/devel/elixir-bson/files/patch-lib_bson__decoder.ex
blob: 414fac0af4348e98ca4e5008f7b06c0d78876698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--- lib/bson_decoder.ex.orig	2021-02-27 04:49:09 UTC
+++ lib/bson_decoder.ex
@@ -51,7 +51,7 @@ defmodule Bson.Decoder do
 
   ```
   """
-  def elist_to_hashdict(elist), do: elist |> Enum.reduce %HashDict{}, fn({k, v}, h) -> HashDict.put(h, k, v) end
+  def elist_to_hashdict(elist), do: elist |> Enum.reduce(%HashDict{}, fn({k, v}, h) -> HashDict.put(h, k, v) end)
 
   @doc """
   Transform an elist to a Keyword
@@ -62,7 +62,7 @@ defmodule Bson.Decoder do
 
   ```
   """
-  def elist_to_keyword(elist), do: elist |> Enum.map fn({k, v}) -> {String.to_atom(k), v} end
+  def elist_to_keyword(elist), do: elist |> Enum.map(fn({k, v}) -> {String.to_atom(k), v} end)
 
   @doc """
   Identity function
@@ -91,7 +91,7 @@ defmodule Bson.Decoder do
   ...>  %{a: "r"},
   ...>  %{a: ""},
   ...>  %{a: 1, b: 5}
-  ...> ] |> Enum.all? fn(term) -> assert term == term |> Bson.encode |> Bson.decode end
+  ...> ] |> Enum.all?(fn(term) -> assert term == term |> Bson.encode |> Bson.decode end)
   true
 
   iex> term = %{