MUSTDOS
Hello all!
assign(socket, :name, “Elixir”)
Why can’t we have assign/stream take a group of atoms and maps/structs as a default to reduce spamming assign/stream along with their parentheses?
I know this isn’t a perfect example of code but here’s what I cooked up but it returns a list of assigns/streams instead finalizing them
def socket_initializer(socket,initializer_list) do
socket = Enum.map(initializer_list, fn {key,value} ->
case key do
:stream ->
Enum.map(value, fn {stream_name, stream_value} ->
IO.inspect stream(socket, stream_name, stream_value)
end)
:assign ->
Enum.map(value, fn {assign_name, assign_value} ->
IO.inspect assign(socket, assign_name, assign_value)
end)
_ ->
IO.puts(to_string(key) <> " is not a valid initalizer")
end
end)
end
initializer_list = [
{ :assign , [ {:search, %Worker{}}, {:active_account_tuple , Operations.status_tuple_registration()} ] },
{ :stream , [ {:workers , %Worker{}} ] }
]
Trending in Proposals: Ideas
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
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
rhcarvalho
stream/4works on a single stream, butassign/2can assign multiple values at once.The one you were referring to is
assign/3which works on a single item.al2o3cr
(NOTE: spruced up the formatting of your code example using triple-backticks
```)I don’t personally see a huge difference between adding a stream by writing:
and
Your post mentions “along with their parentheses”, but the former definitely seems to have more bracketry than the latter.
MUSTDOS
VS
I just felt easier for multiple copy and pastes for bigger pages.
MUSTDOS
Sorry for multiple repeated posts; it just gave me error occurred or something for clicking reply until I refreshed
kevinschweikert
all good! i’ve cleaned up the previous posts