class T::Types::Untyped

A dynamic type, which permits whatever

Public Class Methods

new() click to toggle source
# File lib/types/types/untyped.rb, line 8
def initialize; end

Public Instance Methods

name() click to toggle source

@override Base

# File lib/types/types/untyped.rb, line 11
def name
  "T.untyped"
end
valid?(obj) click to toggle source

@override Base

# File lib/types/types/untyped.rb, line 16
def valid?(obj)
  true
end

Private Instance Methods

subtype_of_single?(other) click to toggle source

@override Base

# File lib/types/types/untyped.rb, line 21
        def subtype_of_single?(other)
  true
end