You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//note: We cannot use 'Tuple' because it's already used by the BCL in the System namespace, and we cannot use 'Tuples' either because it is part of the namespace...
48
48
@@ -74,16 +74,6 @@ public ITuple Concat(ITuple tuple)
// This is mostly used by code that create a lot of temporary singleton, to reduce the pressure on the Garbage Collector by allocating them on the stack.
48
48
// Please note that if you return an STuple<T> as an ITuple, it will be boxed by the CLR and all memory gains will be lost
@@ -82,17 +82,6 @@ public TItem Get<TItem>(int index)
// This is mostly used by code that create a lot of temporary triplet, to reduce the pressure on the Garbage Collector by allocating them on the stack.
50
50
// Please note that if you return an STuple<T> as an ITuple, it will be boxed by the CLR and all memory gains will be lost
// This is mostly used by code that create a lot of temporary quartets, to reduce the pressure on the Garbage Collector by allocating them on the stack.
51
51
// Please note that if you return an STuple<T> as an ITuple, it will be boxed by the CLR and all memory gains will be lost
@@ -126,17 +126,6 @@ public STuple<T2, T3, T4> Tail
// This is mostly used by code that create a lot of temporary quartets, to reduce the pressure on the Garbage Collector by allocating them on the stack.
52
52
// Please note that if you return an STuple<T> as an ITuple, it will be boxed by the CLR and all memory gains will be lost
@@ -132,17 +132,6 @@ public STuple<T2, T3, T4, T5> Tail
// This is mostly used by code that create a lot of temporary quartets, to reduce the pressure on the Garbage Collector by allocating them on the stack.
53
53
// Please note that if you return an STuple<T> as an ITuple, it will be boxed by the CLR and all memory gains will be lost
0 commit comments