public void AddReverse(OneWayArrayMap towardsThis) { for (int i = 0; i < towardsThis.Length; ++i) { ArrayConnection towardsConnection = towardsThis[i]; if (towardsConnection.Type == Connection.Remained) { ArrayConnection connection; connection.J = i; connection.Type = Connection.Remained; Map[towardsConnection.J] = connection; } } }
public static OneWayArrayMap Combine(OneWayArrayMap a, OneWayArrayMap b) { throw new NotImplementedException(); }