frost

frost

I just had the idea that I would create a struct with some fields in uppercase, and I ran in to a lot of seemingly weird behaviour.

Given this code:

defmodule Lower do
  defstruct lower: "lower"
end

defmodule Upper do
  defstruct UPPER: "UPPER"
end

When I try these out in IEx, I can instantiate them just fine, and I can type lower. and hit the tab-key, and it prints the fields, but I can’t seem to tab-complete the UPPER field on an %Upper{} struct, and if I manually type it out, I get an error message:

iex(38)> lower = %Lower{}
%Lower{lower: "lower"}
iex(39)> lower.
__struct__    lower         
iex(39)> lower.lower
"lower"
iex(40)> upper = %Upper{}
%Upper{UPPER: "UPPER"}
iex(41)> upper.
UPPER         __struct__    
iex(41)> upper.UPPER
** (CompileError) iex:41: invalid alias: "upper.UPPER". If you wanted to define an alias, an alias must expand to an atom at compile time but it did not, you may use Module.concat/2 to build it at runtime. If instead you wanted to invoke a function or access a field, wrap the function or field name in double quotes

Does anyone know if this is intended, and if so, where I can read up on why this happens?

Showing Posts 1 to 4

gregvaughn

gregvaughn

iex(36)> :"Elixir.UPPER" = UPPER
UPPER

Upper case identifiers are prefixed with Elixir behind the scenes. They are intended to be used for module names and the prefix ensures that no Elixir modules will conflict with Erlang code.

03juan

03juan

Welcome to the community

This technically works but won’t be tab-completed either:

iex> defmodule Upper, do: defstruct UPPER: "UP"
{:module, Upper, <<...>>, %Upper{UPPER: "UP"}}
iex> upper = %Upper{}
%Upper{UPPER: "UP"}
iex> upper."UPPER"
"UP"
iex> :UPPER = :"UPPER"
:UPPER
iex> Map.keys(upper) |> Enum.map(&Atom.to_string/1)
["UPPER", "__struct__"]

You can define a “raw” atom with : and even wrap it with quotes, but the compiler will try to expand upper.UPPER as mentioned.

Not even this will help

iex> defmodule Upper, do: defstruct [{:"Elixir.UPPER", "UP"}]`
iex> upper = %Upper{}
%Upper{UPPER => "UP"}
iex> upper.UPPER
** (CompileError) iex:..: invalid alias: "upper.UPPER". ...
iex> upper."Elixir.UPPER"
"UP"

And now the word “upper” has lost all meaning in my brain.

jackyjoy123

jackyjoy123

thanks for the awesome information.

mguimas

mguimas

For reference, tab completion works when the uppercase atom starts with an underscore, like this

iex(184)> defmodule Upper, do: defstruct _UPPER: "UP"
{:module, Upper,
 <<70, 79, 82, 49, 0, 0, 6, 232, 66, 69, 65, 77, 65, 116, 85, 56, 0, 0, 0, 194,
   0, 0, 0, 19, 12, 69, 108, 105, 120, 105, 114, 46, 85, 112, 112, 101, 114, 8,
   95, 95, 105, 110, 102, 111, 95, 95, 10, ...>>, %Upper{_UPPER: "UP"}}
iex(185)> upper = %Upper{}
%Upper{_UPPER: "UP"}
iex(186)> upper._
_UPPER        __struct__    
iex(186)> upper._UPPER
"UP"
— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
kpanic
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
nseaSeb
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews