29
.
04
.
2024
20
.
09
.
2022
Ruby on Rails
Backend
Ruby
Tutorial

Safe navigation operator '&.' vs '.try' in Rails

Mateusz Woźniczka
Ruby Developer

Safe navigation operator '&.' vs '.try' in Rails

We are back to our Blog app, and this time we want to get the name of the post's author. The task is really straightforward, and we end up with the following piece of code:

post.author.name

We will get our desired result, only if post.author and post.author.name are defined - otherwise, we will end up with undefined method error. If we want to avoid those errors, we can make use of some ifs:

if post
  if post.author
    if post.author.name
      post.author.name
    end
  end
end

This solution gets the job done, but looks extremely bad. Fortunately, Ruby provides a safe navigation operator &. and Rails (or ActiveSupport to be more specific) provides the try method, that can help avoid undefined method exceptions without extensive use of if statements.

In this post, we will compare both of those methods, and look for the differences between them.

Examples

Happy path

First, let's see how they behave when everything is defined.

author = Author.new(name: 'Joe')
post = Post.new(author: author)

post.author.name
> "Joe"

post&.author&.name
> "Joe"

post.try(:author).try(:name)
> "Joe"

There are no big surprises. When there is no nil along the chain both &. and try return the author's name.

Post without an author

post = Post.new

post.author.name
> NoMethodError (undefined method 'name' for nil:NilClass)

post&.author&.name
> nil

post.try(:author).try(:name)
> nil

As expected, both methods return nil instead of calling the name method on an empty author.

Nil post

Let's see how both methods behave when they are used to call chained undefined methods for nil

nil.author.name
> NoMethodError (undefined method 'author' for nil:NilClass)

nil&.author&.name
> nil

nil.try(:author).try(:name)
> nil

Just like in the previous example both methods returned nil instead of calling the author method nil.

Calling post's undefined method

Now let's get back to post, and see what happens when we try to call an undefined method

post = Post.new

post.undefined_method
> NoMethodError (undefined method 'undefined_method' for <Post:0x00007fe4ee8f5e50>)

post&.undefined_method
> NoMethodError (undefined method 'undefined_method' for <Post:0x00007fe4ee8f5e50>)

post.try(:undefined_method)
> nil

Here is the first difference between the discussed functions. Safe navigation operator returns nil only if the receiver is nil as well - it does not do any validation of called methods. On the other hand, try is returning nil whenever the receiver does not respond to the call.

Calling nil's defined method

Let's go back to the example with nil as the receiver of the first call, but this time we will extend NilClass, so the called method is actually defined.

class NilClass
  def name
    'called nil name'
  end
end

nil.name
> "called nil name"

Now, nil respond to the name method. Let’s see how both methods are handling that:

nil&.name
> nil

nil.try(:name)
> nil

The safe navigation operator behaves as expected - it does not care about the method implementation - it checks only if the receiver is nil. Method try is behaving in the same matter - if the receiver is nil it is not checking if it responds to called method, instead, it returns nil as well.

Wrap up

Safe navigation operator &. is provided by Ruby. It returns nil only if the receiver of the method is nil as well. It does not check if called method is defined.

Rails provides us with the try method, which checks if the receiver (which is not nil) responds to the called method, and if not it returns nil instead of throwing an exception.

Mateusz Woźniczka
Ruby Developer

Check my Twitter

Check my Linkedin

Did you like it? 

Sign up To VIsuality newsletter

READ ALSO

Let’s prepare for GITEX Dubai together!

11
.
06
.
2025
Michał Piórkowski
Conferences
Business

Ruby Quirks

11
.
06
.
2025
Jan Matusz
Ruby on Rails
Ruby

Visuality recognized as one of the Best Ruby on Rails Devs

11
.
06
.
2025
Maciej Zdunek
Ruby on Rails
Visuality
Business

Let’s prototype!

11
.
06
.
2025
Michał Łęcicki
Ruby on Rails
Backend

Between the devil and the deep blue sea

11
.
06
.
2025
Mateusz Wodyk
Project Management
Backend
HR

Is the culture of the organization important?

11
.
06
.
2025
Alicja Gruszczyk
Conferences
Visuality

5 marketing hacks which will make your life easier

11
.
06
.
2025
Maciej Zdunek
Marketing
Design

Marketing hacks #01: How to Track off-line conversions

11
.
06
.
2025
Marek Łukaszuk
Ruby on Rails
Business
Marketing

JSON:API consumption in Rails

11
.
06
.
2025
Jan Matusz
Ruby on Rails
Backend
Tutorial

Selected SXSW lectures takeaways

11
.
06
.
2025
Michał Piórkowski
Conferences
Frontend
Backend
Business

Common communication issues in project management

11
.
06
.
2025
Michał Krochecki
Project Management

SXSW Summary

11
.
06
.
2025
Michał Piórkowski
Ruby on Rails
Conferences
Frontend
Backend
Business

How to get the most out of SXSW Interactive

11
.
06
.
2025
Michał Krochecki
Ruby on Rails
Conferences
Frontend
Backend
Business

Guide to recruitment at Visuality

11
.
06
.
2025
Michał Piórkowski
HR
Visuality

TOP Ruby on Rails Developers

11
.
06
.
2025
Maciej Zdunek
Ruby on Rails
Visuality
Business

How to conquer Westworld?

11
.
06
.
2025
Maciej Zdunek
Business
Marketing

2018 Rewind by Visuality

11
.
06
.
2025
Michał Krochecki
HR
Visuality

Quality Assurance Testing

11
.
06
.
2025
Jarosław Kowalewski
Ruby on Rails
Backend

Why do we like to be together?

11
.
06
.
2025
Michał Krochecki
Visuality
HR

Wallboards - a great value for our teams and clients

11
.
06
.
2025
Michał Krochecki
Ruby on Rails
Design
Project Management
Backend

2018 Clutch Global Leader

11
.
06
.
2025
Maciej Zdunek
Ruby on Rails
Visuality
Business
Marketing