Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PairOutputKeyBuilder.cs
Go to the documentation of this file.
2
3internal sealed class PairOutputKeyBuilder<TLeftKey, TRightKey> : HashJoinOutputKeyBuilder<TLeftKey, TRightKey, Pair<TLeftKey, TRightKey>>
4{
5 public override Pair<TLeftKey, TRightKey> Combine(TLeftKey leftKey, TRightKey rightKey)
6 {
7 return new Pair<TLeftKey, TRightKey>(leftKey, rightKey);
8 }
9}
override Pair< TLeftKey, TRightKey > Combine(TLeftKey leftKey, TRightKey rightKey)