public static bool IsSouthFrom(this BoardLocation source, BoardLocation target) { return((source.ToByte() < target.ToByte()) && source.IsOnSameColumnAs(target)); }