jeroenbourgois
I would like to add a function to my project that is available throughout all modules without aliasing/importing it. How should I go about it? I know I can include it in my *_web.ex file so it becomes available in controllers, views, … but I want to use it in business logic as well. Like the title op my topic suggest, I would like it to be available next to all other default Kernel module functions.
The function itself is very simple:
def is_empty(""), do: true
def is_empty(nil), do: true
def is_empty([]), do: true
def is_empty(_), do: false
Thank you for your input!
PS: I opted for is_empy/1 vs empty?/1 to relate to the existing is_nil/1 function.
PS2: our codebase has various occurences of x in ["", nil] checks, which I would like to simplify.
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
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
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
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 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
LostKobrakai
There’s nothing automatically imported besides
Kernelin elixir. You either need to import explicitly or have a macro doing the import.christhekeele
Yup. Elixir is explicit about imports by design, with
Kernelbeing the single exception. You will need to define some sort ofMyProject.Kerneland import it wherever you want to use its functions.Just BTW, the
is_nil/1function does not chooseis_nilovernil?half-hazardly, this is in line with a particular Elixir naming convention:To follow this convention that other developers in your project may rely upon, you would either want to name this function
empty?/1, or implement it as a guard.That implementation will be different than the functional version, but can be used anywhere guards or allowed! To translate your example
is_empty/1, it would look something like:Finally, as a design note, outside of extenuating circumstances, I would treat it as a code smell that you are often checking if
thing in ["", nil, []]. The implication is that you are regularly uncertain if your data is a string, list, or null value; all throughout your program.It would be hard with no context to diagnose why this is happening or propose a better pattern, but I would keep
on this part of your code! You may find an opportunity to coerce the variable type of an input into your program into a known single type close to where it is received, then confidently refactor a lot of less-confident, unassertive code. Then theoretically you could handle “empty cases” throughout just by matching against one of
"",[], ornil.jeroenbourgois
Thank you (both) for the responses!
As for the data, most checks are if
a in ["", nil](without the list), because for those fields in the database we can havenilor the empty string. In the database we want the difference, since nil is the default (aka: never set) and the empty string can be ‘set to empty’, but was set none the less.We find it valuable to have that distinction in the db, but in the application it doesn’t matter most of the time.
Thanks again for the input, I’ll take this feedack to our team!
christhekeele
That’s a very common situation, makes perfect sense!
Generally, rather than scattering these checks across my codebase, I’d try to exert them within modules singly responsible for interacting with ecto structs that have these quirks—for example, perhaps inside the schema modules themselves with changesets, or a context module that validates and navigates all of this conditional logic in one place.
Specific to this common empty-string data-model case however, I’d propose a simpler way to handle this—at least, if your team is willing to make a schema change, and using postgres—other dbs may have similar solutions but I’m not sure:
This simply ensures that a given field can not be an empty string.
Whether or not my
textfields areNOT NULLthese days, I simply do not allow empty strings in my data model. It never makes sense in the domain layer, causes semantic confusion in nullable columns, and as you experience, pushes a whole bevy of edge case handling to application logic.Empty strings are the opposite of data, moreso than
NULLs! Get’em out of your database! Make invalid states unrepresentable! Have your nullable changesets cast""tonilonce, your non-nullable ones error, and never think about it again.The one exception is maybe if I have a user-entered free-form text area like a description and I want to discern between “never interacted with” and “had a value manually deleted”. But that’s really something that should be modeled differently, with change tracking or an enum-type state machine.
D4no0
I’ve dealt with this a few times also in some legacy codebases and the best solution I found is to use custom Ecto types that know how to deal with these values, you skip the step where you have to deal manually with these kind of checks.
sodapopcan
Man, this forum is unforgiving for inadvertent submits! But that is neither here not there.
I’m gonna triple down on custom Ecto types.
If they happen to sound scary, they really aren’t. If your team is resistant at all, do a book club (or “doc club” if you will) on them and you’ll realize they really aren’t.
EDIT: aaaand I need to edit again, because clearly I was responding to OP and not you, D4no0.
D4no0
I don’t see why there would be any difficulties or traction with custom ecto types, for example for strings that are not normalized in database you could do:
Where
is_emptycan be a custom guard that can detect all these shifty types, or you could do that with a function as above.dimitarvp
You’re a missing a guard here.
sodapopcan
Me neither but I’ve dealt with people who are resistant.