class DataStructureInt

DataStructureInt. @abstract @class_description

A DataStructure type interface.

DataStructureInt. @abstract @class_description

A DataStructure type interface.

Constants

VERSION

Public Class Methods

instance?(obj = nil) click to toggle source

self.instance?(obj = nil). @description

Boolean method. Verifies an object is a data structure instance.

@param obj [.]

Any object.

@return [TrueClass, FalseClass]

True in the case the argument's class is an element of the types set.
False otherwise.
# File lib/data_structure_int.rb, line 22
def self.instance?(obj = nil)
end
type?(type = nil) click to toggle source

self.type?(type = nil). @description

Boolean method. Verifies a type is a DataStructure.

@param type [.]

Any type.

@return [TrueClass, FalseClass]

True in the case the type is an element of the types set. False otherwise.
# File lib/data_structure_int.rb, line 32
def self.type?(type = nil)
end