class ActionView::OutputBuffer

def <<(value)

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

type ActionView__OutputBuffer_<<_value = ActionView::OutputBuffer | ActiveSupport::SafeBuffer | ViewComponent::Slot | String | Gem::Version | Array[String] | Float | nil | InstanceMethod | ModuleDefinition | ClassDefinition | Integer

def <<: (ActionView__OutputBuffer_<<_value value) -> ActionView::OutputBuffer

This signature was generated using 313 samples from 2 applications.

def <<(value)
  return self if value.nil?
  super(value.to_s)
end