module Tins::Full

def all_full?

def all_full?
  if respond_to?(:all?) && all?(&:full?)
    block_given? ? yield(self) : self
  end
end