module Bake::Type::Type
An extension module which allows constructing ‘Any` types using the `|` operator.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 58 def | other Any.new([self, other]) end
Create an instance of ‘Any` with the arguments as types. @parameter other [Type] the alternative type to match.