module Stitcher::VariadicArgument

Public Instance Methods

+@() click to toggle source
# File lib/stitcher/variadic_argument.rb, line 6
def +@
        lambda { |other|
                return false if size > other.size
                clone.fill(last, size, other.size - size) === other
        }
end