vrod
I think I do not understand something. Can someone explain why this works?
iex> [] ++ {:ok, "好"}
{:ok, "好"}
Is a tuple a list?
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #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
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
srowley
That works for any term:
The return value is an improper list. As you can read in the documentation, when the right-hand side of this function (
++/2) is not a list, the return value is an improper list. (Point being, a tuple is not a list).rvirding
In this case as the lhs of
++is[], an empty list, it will be skipped by++. The reason is that++appends it rhs to the end of the list in the lhs. It doesn’t check the rhs just appends it to the lhs.If the rhs is not a list then result will be an improper list.
vrod
What exactly is an improper list? If a list is a singly-linked list, it has hierarchical structure something like
["a", ["b", ["c"]]], yes? Sorry if I am not understanding.John-Goff
An improper list is a linked list that does not have a list as its last element. So
Which you can see if you type the above into an iex shell.
ityonemo
ok, so lists in elixir are linked lists, so the list
[1, 2]is actually (1 → (2 → ??))That ?? has to be something, it can’t be dangling. By convention we pick
[], because it makes a lot of recursion type things look really nice, and as a bonus[]at two bytes is the smallest object in the erlang world.so really it’s (1 → (2 →
[]))However, ?? could be literally anything, so if it’s anything besides
[], then it’s called an improper list. A lot of things (like the entire Enum module) break with improper lists, and you have to handle recursion with care - so be careful. Why would you use it? It does take slightly less space, so if you are implementing something on a system with tight storage requirements (like embedded) with a ton ton ton of really short lists, it might be worth it.Also note the notational differences, if you have an improper list (1 → (2 → 3)), the default notate it is:
which is not the same as
which is (1 → (2 → (3 →
[])))Dusty
This strikes me as not a great tradeoff. Is this really the only reason improper lists are allowed?
ityonemo
Iirc it’s generally considered to be a 'legacy concept from an earlier era". Just know you might run into it if you’re using an older erlang library, otherwise you will probably not run into it. Also certain datatypes allow it, e.g. iodata, as you send to IO.iodata_to_string
vrod
thanks this is very much helpful!
Dusty
I guess my concern was that I might create an improper list inadvertently, and the compiler won’t flag it. So then your
Enumbreaks and you don’t understand why.ityonemo
I think it’s pretty unlikely. In about 2.5 years of elixir and probably about 60 kloc that’s never happened to me that I can recall.
Besides, now you’ll understand why!