예제 #1
0
 /// <summary>Appends the items of a tuple at the end of the current tuple.</summary>
 /// <param name="tuple">Tuple whose items are to be appended at the end</param>
 /// <returns>New tuple composed of the current tuple's items, followed by <paramref name="tuple"/>'s items</returns>
 public IFdbTuple Concat(IFdbTuple tuple)
 {
     return(FdbTuple.Concat(this, tuple));
 }
예제 #2
0
 public IFdbTuple Concat([NotNull] IFdbTuple tuple)
 {
     return(FdbTuple.Concat(this, tuple));
 }