Class: RBI::Type::Untyped
- Inherits:
-
Type
- Object
- Type
- RBI::Type::Untyped
- Defined in:
- lib/rbi/type.rb
Overview
T.untyped.
Instance Method Summary collapse
-
#==(other) ⇒ Object
: (BasicObject other) -> bool.
-
#normalize ⇒ Object
: -> Type.
-
#simplify ⇒ Object
: -> Type.
-
#to_rbi ⇒ Object
: -> String.
Instance Method Details
#==(other) ⇒ Object
: (BasicObject other) -> bool
189 190 191 |
# File 'lib/rbi/type.rb', line 189 def ==(other) Untyped === other end |
#normalize ⇒ Object
: -> Type
201 202 203 |
# File 'lib/rbi/type.rb', line 201 def normalize self end |
#simplify ⇒ Object
: -> Type
207 208 209 |
# File 'lib/rbi/type.rb', line 207 def simplify self end |
#to_rbi ⇒ Object
: -> String
195 196 197 |
# File 'lib/rbi/type.rb', line 195 def to_rbi "::T.untyped" end |