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 | nil | InstanceMethod | ModuleDefinition | ClassDefinition | Integer | Float

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

This signature was generated using 260 samples from 1 application.

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