UniRx 에셋 추가

This commit is contained in:
Mingu Kim
2025-06-02 00:27:36 +09:00
parent 915f292d7d
commit 8a54d47b56
510 changed files with 42973 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
using System;
using System.Collections.Generic;
namespace UniRx
{
// Pair is used for Observable.Pairwise
[Serializable]
public struct Pair<T> : IEquatable<Pair<T>>
{
readonly T previous;
readonly T current;
public T Previous
{
get { return previous; }
}
public T Current
{
get { return current; }
}
public Pair(T previous, T current)
{
this.previous = previous;
this.current = current;
}
public override int GetHashCode()
{
var comparer = EqualityComparer<T>.Default;
int h0;
h0 = comparer.GetHashCode(previous);
h0 = (h0 << 5) + h0 ^ comparer.GetHashCode(current);
return h0;
}
public override bool Equals(object obj)
{
if (!(obj is Pair<T>)) return false;
return Equals((Pair<T>)obj);
}
public bool Equals(Pair<T> other)
{
var comparer = EqualityComparer<T>.Default;
return comparer.Equals(previous, other.Previous) &&
comparer.Equals(current, other.Current);
}
public override string ToString()
{
return string.Format("({0}, {1})", previous, current);
}
}
}