class Bake::Type::Any
An ordered list of types. The first type to match the input is used.
```ruby type = Bake::Type::Any(Bake::Type::String, Bake::Type::Integer) ```
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 17 def initialize(types) @types = types end
Initialize the instance with an array of types. @parameter types [Array] the array of types.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 44 def self.parse(value) value end
As a class type, accepts any value.
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 23 def | other self.class.new([*@types, other]) end
Create a copy of the current instance with the other type appended. @parameter other [Type] the type instance to append.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 29 def composite? @types.any?{|type| type.composite?} end
Whether any of the listed types is a composite type. @returns [Boolean] true if any of the listed types is ‘composite?`.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 35 def parse(input) @types.each do |type| return type.parse(input) rescue # Ignore. end end
Parse an input string, trying the listed types in order, returning the first one which doesn’t raise an exception. @parameter input [String] the input to parse, e.g. ‘“5”`.
Source
# File vendor/bundle/ruby/3.4.0/gems/bake-0.23.1/lib/bake/type/any.rb, line 49 def to_s "any of #{@types.join(', ')}" end
Generate a readable string representation of the listed types.