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() -> Int
Return Value
Hashcode as Integer
-
Compares the specified object with the current class equality.
Declaration
Swift
public func equals(obj: AnyObject?) -> Bool
Parameters
obj
Object 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) -> Bool
Parameters
lhs
First instance of base class
rhs
Second instance of base class
Return Value
True if found equal, else false