Example #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 ITuple Concat(ITuple tuple)
 {
     return(STuple.Concat(this, tuple));
 }
Example #2
0
 public ITuple Concat([NotNull] ITuple tuple)
 {
     return(STuple.Concat(this, tuple));
 }