BaseClass
public class BaseClass : Status
Base class for use with other ABCircleTerminalFactory classes
Base class for use with other ABCircleTerminalFactory classes. Defines shared functions that all other classes also should export.
-
Calculates and returns a hashcode representing the current class object
Declaration
Swift
public func hashCode() -> IntReturn Value
Hashcode as Integer
-
Compares the specified object with the current class equality.
Declaration
Swift
public func equals(obj: AnyObject?) -> BoolParameters
objObject to compare to
Return Value
True if found equal, else false
-
Compares the 2 entered class instances for equality.
Declaration
Swift
public static func == (lhs: BaseClass, rhs: BaseClass) -> BoolParameters
lhsFirst instance of base class
rhsSecond instance of base class
Return Value
True if found equal, else false
BaseClass Class Reference