module Arel

def self.arel_node?(value) # :nodoc:

Experimental RBS support (using type sampling data from the type_fusion project).

def self.arel_node?: (Arel::Attributes::Attribute value) -> true

This signature was generated using 2 samples from 1 application.

:nodoc:
def self.arel_node?(value) # :nodoc:
  value.is_a?(Arel::Nodes::Node) || value.is_a?(Arel::Attribute) || value.is_a?(Arel::Nodes::SqlLiteral)
end