Move
public struct Move : CustomStringConvertible, Hashable
Represents move on board.
-
Initialize move with human readable string.
Declaration
Swift
public init(string: String)
Parameters
string
Move string in human readable format (e.g.,
"g1f3"
,"e7e8Q"
).
-
Converts move into human readable string format.
Declaration
Swift
public var description: String { get }