class Arel::Collectors::Bind
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/arel/collectors/bind.rbs class Arel::Collectors::Bind def <<: (String str) -> Arel::Collectors::Bind def add_bind: (ActiveRecord::Relation::QueryAttribute bind) -> Arel::Collectors::Bind def value: () -> untyped end
def <<(str)
Experimental RBS support (using type sampling data from the type_fusion
project).
def <<: (String str) -> Arel::Collectors::Bind
This signature was generated using 35 samples from 1 application.
def <<(str) self end
def add_bind(bind)
Experimental RBS support (using type sampling data from the type_fusion
project).
def add_bind: (ActiveRecord::Relation::QueryAttribute bind) -> Arel::Collectors::Bind
This signature was generated using 6 samples from 1 application.
def add_bind(bind) @binds << bind self end
def add_binds(binds, proc_for_binds = nil)
def add_binds(binds, proc_for_binds = nil) @binds.concat proc_for_binds ? binds.map(&proc_for_binds) : binds self end
def initialize
def initialize @binds = [] end
def value
Experimental RBS support (using type sampling data from the type_fusion
project).
def value: () -> untyped
This signature was generated using 4 samples from 1 application.
def value @binds end