class DataInt
DataInt
. @abstract @class_description
Declares a DataType class interface.
DataInt
. @abstract @class_description
Declares a DataType class interface.
Constants
- VERSION
Public Class Methods
instance?(obj = nil)
click to toggle source
self.instance?(obj = nil). @description
Predicate. Verifies an object is a DataType type instance.
@param obj [.]
Any object.
@return [TrueClass, FalseClass]
True in the case the argument is a Numeric, FalseClass, Symbol, TrueClass, or NilClass object. False otherwise.
# File lib/data_int.rb, line 30 def self.instance?(obj = nil) end
type?(type = nil)
click to toggle source
self.type?(type = nil). @description
Predicate. Verifies a type is a DataType.
@param type [.]
Any identifier.
@return [TrueClass, FalseClass]
True in the case the type is a DataType. False otherwise.
# File lib/data_int.rb, line 40 def self.type?(type = nil) end
types()
click to toggle source
self.types(). @description
Gets the DataTypes.
@return [Array]
The TYPES reference.
# File lib/data_int.rb, line 19 def self.types() end