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
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
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
- #elixirconf-us
- #ai
- #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 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.