mmport80
Structs’ success typing is the same as common garden maps to Dialyzer, right?
What are the preferred ways to enforce a particular struct?
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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
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
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
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
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
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
- #ai
- #elixirconf-us
- #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)
easco
In Elixir you can pattern match on the struct’s type so for example:
The takesStruct function will only match for instances of the %StructTest{} structure.
Qqwy
You can see more information at the Typespecs page in the Documentation.
To match a Struct inside a typespec, use the normal
%StructName{}syntax.EDIT: The documentation moved to a new location.
mmport80
As far as I can see Dialyzer likens structs to any general map %{}, which means you lose the specificity…
michalmuskala
Erlang 19 introduces more advanced support from dialyzer for maps -
checking specific keys and general key types. Support for those new
features is in Elixir 1.3 as well. Here’s the PR that introduced them:
https://github.com/elixir-lang/elixir/pull/4662
mmport80
oh really? this is very nice. when’s the eta? (if there is one)
hubertlepicki
1.3 rc0 was just released today.
michalmuskala
Erlang 19-rc was released couple days ago. I’d expect final release
probably in the matter of next couple weeks.
miguelsaddress
Hello!
I am totally new to Elixir and I just found your response because I am trying to figure out this pattern matching for types
is
def takesStruct(struct = %StructTest{}) doequivalent todef takesStruct(%StructTest{} = struct) do?As I understand,
def takesStruct(%StructTest{} = struct) dois checking that struct is of type StructTest, am I right? or is it explicitly requiring an empty struct? (I dont think it is even possible…)Thank you in advance
amnu3387
It’s just matching on a %StructTest, empty or not, you can’t have a struct that is empty, since a struct is just a map with pre-defined fields. You can match on an empty map though, with a guard clause,
def empty(%{} = variable) when variable == %{} do, or on empty struct fields directlydef empty(%StructTest{some_field: nil}) do, of course if you set a default on the field it won’t workcrabonature
def takesStruct(%StructTest{} = struct) do, means:%StructTest{}struct, otherwise it will not be invokedstructvariable, which you can use later in the function body.