vshesh
Hi everyone,
trying to encode some information about music (a different structure than the harmonex package).
I have an earlier implemenation of what I want in python (from a previous project). It heavily uses enums to describe the structure of pitch classes, intervals, chords etc.
eg one of them:
"""
Simple mapping of note name to MIDI value mod 12.
MIDI 0th octave begins at 12 + this value. (so C0 = 12, A0 = 21, etc)
"""
import aenum
Pitch : 'Pitch' = IntEnum('Pitch', {
# note, this order is NOT random
# raw note names are preferred to enharmonic equivalents
# flats are preferrable to sharps (jazz musician here)
'C': 0, 'D': 2, 'E': 4, 'F': 5, 'G': 7, 'A': 9, 'B': 11,
'Db':1, 'Gb':6, 'Ab':8, 'Bb':10, 'Eb': 3,
'C#':1, 'D#':3, 'G#':8, 'A#':10, 'F#': 6,
# these are just weird, so they exist only as aliases for B/C E/F respectively.
'Fb':4,'E#':5,'B#':0, 'Cb':11
})
Is there something equivalent in erlang/elixir that allows me to have similar properties as an enum like this? “Just use a map” only allows me to do lookups in one direction - i also want to be able to do them in the other direction. So would want to be able to do:
> Pitch.C
Pitch.C (as opposed to 0 as the representation)
> Pitch("A#") => Pitch.Aꖛ #found a unicode character that elixir accepts that looks like a sharp
> Pitch(:Cꖛ) => Pitch.Cꖛ
> Pitch(12) => Pitch.C #appropriate instance, mod 12
> Pitch(10) => Pitch.Bb # chooses the first instance when there are more than one option
> Pitch.C => Directly choose the right instance
> Pitch.C = Pitch.Cꖛ => :false
> import Pitch; import Interval
> C + m2 => Pitch.Cꖛ
> major_scale = [U, M2, M3, P4, P5, M6, M7] # these are Interval.U, Interval.M2 etc
> minor_11 = ~I(m3 P5 m7 M9 P11) => [m3, P5, m7, m9, P11] # again, Interval.m3, Interval.P5 etc
The shorthand import structure are very useful to not have to type out Pitch._ and Interval._ every time.
Is this what @ is for?
defmodule Pitch
@C = 0
@Cs= 1
@Db= 1
@D = 2
...
end
?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
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
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
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
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
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
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kip
Since the order is important, an Elixir/erlang map is not the right structure since order is not defined
If the list is known at compile time (ie its static) then you can compile your mappings into functions. For example:
Since functions clauses are resolved in lexical order, this implementation does rely on the keys and the values being unique.
vshesh
how are you unquoting outside of a
quote do ... endblock?kip
In Elixir this is referred to as an unquote fragment.
You may also find this post helpful.
eksperimental
Just to illustrate how to achieve the bi-directional structure you were looking for.
eksperimental
Elegant solution.
The only one caveat is that since the numbers are not unique you will get a warning saying a previous clause always matches
kip
Yes, you are right and I’m definitely not sure my approach is the best one but I like it for its expressiveness and simplicity.
vshesh
Spent some time working on @kip’s solution and ended up with
(I broke up some of what I wrote above into a forward search
pitchfunction and a backwards lookupnamefunction. Doing them both in one function was just weird now that I decided to have a struct, which is the only way to get an implementation ofto_stringandinspectworking).used like so:
Then I can do
I don’t understand this warning:
I read the docs and it doesn’t explain how to make this warning change? Just explains that consolidation is used for improving lookup speed.
Let me know if this is sensible or downright strange
eksperimental
when are you calling this line?
If that happens after your code has been compile, you will get that warning. It usually happens in tests or from IEx
vshesh
Yeah I learned that ElixirLS is just complaining and things work fine when I run with
iex -S mixI’m pretty happy with this final solution for now, so leaving it here in case it helps others: