tbk
I have a function with a condition:
def iteraterefs(divisor, number, table, out, i) when number >= divisor do
number = number - divisor
out = out <> elem(table, i)
end
However it seems that the compiler does not like the condition when number >= divisor do, is there something about reuse of function variables I am missing from the documentation?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
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
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
I’m using an Umbrella project for a Phoenix application, and I want to have one Ecto Repo and one PostgreSQL database shared by all apps....
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #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)
benwilson512
Hi @tbk the code you show looks valid to me. Can you show the actual error you get?
tbk
I am using the Exercism practice platform which attempts to test the code
In the above
number >= divisorhas red text highlighting. The function is being called in aEnum.eachlike this:And is defined as:
al2o3cr
FunctionClauseErroris what I’d expect fromiteraterefsif it was called withnumber < divisor. You likely need to define it for those inputs as well to pass Exercism’s tests.General note: this isn’t going to do what you want.
i = i + 1rebinds the nameiinside thedo / endblock but that value doesn’t escape or even make it to the next iteration.Same thing for
out = out <> elem(table, i)insideiteraterefs; the nameoutis bound to a new name but then the scope ends immediately.My recommendation would be to forget completely about
Enum.eachfor a little while; it is almost never the right solution in Elixir.tbk
Isn’t the solution to variable scope to pin the variables?
sodapopcan
Pinning variables only performs a match, it doesn’t create a binding. You aren’t actually doing any pinning in your example so I’m not quite sure how you are picturing it would work but, for example, this doesn’t work:
^foo = 1 + 1gets expanded to1 = 2which, of course, does not match.If you want to accumulate a variable the most basic ways to are either recursion or
Enum.reduce.tbk
I was imagining something like
foo = ^foo + 1which would reference the variable in the outer scope. Or isfoodestroyed when it leave scope?sodapopcan
Yes, it is. It’s a bit confusing terminology-wise since we do say we can re-bind variables but really it might be easier to think of as you are only reusing the names. It doesn’t affect any outer scopes.
The pin operator can only be used on the lefthand side of a match. The only reason it exists is due to being able to reuse variable names. In Erlang, this isn’t a problem since you are not allow to re-use them.
tbk
It was my reading of those examples from the docs to interpret the
^as something like a “type/value checked deference”.Forging ahead, ignoring what I was told about the scope of
out, I’ve restructured my code in a recursive manner.The compiler parses
iteraterefsand produces:Is this an interaction with the
elem(refs, i)call? Here is therefsI constructed by hand:sodapopcan
Sorry, my example may have been a bit confusing. The
out = out <> symbolisn’t doing anything other than assigningout <> symboltooutthen throwing it away. You can rebind variable from outer scope.You can reference an outer scope, but you can’t re-bind.
tbk
This I understand from your explanation I was just attempting to address getting the function
iteraterefsto compile with inputs. I’ll worry about variable assignment after that.