Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

73
Vistas
Ruby/Rails return with result if function call is returning something

Please forgive me if this is something beginner level. I'm looking for a cleaner way of doing something like this,

def function
  return Books.all if Books.any?
  
  return BooksForeign.all if BooksForeign.any?

  nil
end

Since I'm basically duplicating the call, I was wondering if there's a simple and better way of doing this. I just want to return if there's anything returning with Books method or BooksForeign method as the method which expects a return doesn't care if it's Foreign Books or Not.

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

def function
  Books.all.presence || BooksForeign.all.presence
end

Object#presence is one of ActiveSupport's more useful core extensions to Ruby. It returns the object if its present? or nil otherwise. Empty collections are not present?.

If you had a whole list of classes you could use Enumerable#find which would return the first non-falsy value:

[Foo, Bar, Baz].find { |klass| klass.all.presence }
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda