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