BradS2S
I want to preface this by saying that I’m feeling very thankful for all the helpful answers I’ve been getting from the community and feel like I’m to the point where going to the source code first is really productive.
Getting into the difference between Enumerable and Collectable protocols and how they are invoked in the Enum and Stream modules, I ran across something that didn’t make sense to me.
Setting aside the deprecated collectables (non-empty and keyword lists), I understand the following collections to implement the two different protocols:
| Enumerable | Collectable (supported) |
|---|---|
| IO.Stream | IO.Stream |
| Range | Empty List |
| List | BitString |
| Map | Map |
| Function | MapSet |
| MapSet | Mix.Shell |
| DateRange | File.Stream |
| Stream | Stream |
| File.Stream |
I haven’t been able to reconcile the spec typing with what seems to work.
@spec into(Enumerable.t(), Collectable.t()) :: Collectable.t()
Enum.into(enumerable, collectable)
Some situations probably aren’t that helpful like passing a range into an empty map but should it work if they typing says they should?
Enum.into(1..10//2, %{})
** (FunctionClauseError) no function clause matching in anonymous fn/2 in Collectable.Map.into/1
The following arguments were given to anonymous fn/2 in Collectable.Map.into/1:
# 1
%{}
# 2
{:cont, 1}
(elixir 1.15.7) anonymous fn/2 in Collectable.Map.into/1
(elixir 1.15.7) lib/enum.ex:1554: anonymous fn/3 in Enum.reduce_into_protocol/3
(elixir 1.15.7) lib/range.ex:526: Enumerable.Range.reduce/5
(elixir 1.15.7) lib/enum.ex:1553: Enum.reduce_into_protocol/3
(elixir 1.15.7) lib/enum.ex:1537: Enum.into_protocol/2
/Users/bradhanks/membrane_tutorial.livemd#cell:wp5kyzkt6fqb75ktz3vdbl7sbfehlmzc:1: (file)
It makes sense that the Collectable.Map.into/2 expects a tuple and that Collectable.BitString.into/2 only has function clauses that match for binary or bitstring.
I’m looking for a better understanding on what the types in @spec represent.
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
lud
I don’t think you can collect a range in a map because a map needs a key and a value.
For instance
1..10//2 |> Enum.map(& {&1, :some_value}) |> Enum.into(%{})should work.Edit: but you know that, sorry I did not read your post carefully. Well the types are broad and do not have generics.
I a static language you would have
Enumerable.t<Pair>andCollectable.t<Pair>and it would not compile unless the wrapped types are compatible (PairandPairare compatible for instance).al2o3cr
Some typings, particularly for generic functions like in
Enum, are intended more for human readers than for the compiler.For instance, both
Enumerable.t()andCollectable.t()are generated byProtocolas aliases ofterm:https://github.com/elixir-lang/elixir/blob/3ae8475e41bb1ebe81c2e0954c88381ebe31afab/lib/elixir/lib/protocol.ex#L899-L904
LostKobrakai
The same is true the other way as well. Maps are an enumerable of tuple-2 values. The same the map collectable implementation expects an enumerable of tuple-2 values as input.
BradS2S
Yeah that was going to be my next question. I held off just in case the answer to this resolved the other. Thank you for clearing that up!
Arguably there isn’t much utility to the change but it would be tidier if there was some sort of provision for defaults when required.
BradS2S
Yeah there seem to be many instances when it isn’t going to work which is why it was so disconcerting. But I’m not that bothered if no one else is. There’s always
into/3.josevalim
Hi @BradS2S! You have been submitting PRs to Elixir and if you want to send a PR that improves the error message here, it would be very welcome. Something like:
Thank you!
BradS2S
Thank you! I’ll do it.