blob: a4f5a9331c1c9c49c3233dc012b7f4909ac3d031 [file] [log] [blame]
/**
* Autogenerated by Thrift Compiler (0.14.2)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
* @generated
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Thrift;
using Thrift.Collections;
#pragma warning disable IDE0079 // remove unnecessary pragmas
#pragma warning disable IDE1006 // parts of the code use IDL spelling
public static class rpcExtensions
{
public static bool Equals(this Dictionary<string, int> instance, object that)
{
if (!(that is Dictionary<string, int> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this Dictionary<string, int> instance)
{
return TCollections.GetHashCode(instance);
}
public static Dictionary<string, int> DeepCopy(this Dictionary<string, int> source)
{
if (source == null)
return null;
var tmp609 = new Dictionary<string, int>(source.Count);
foreach (var pair in source)
tmp609.Add((pair.Key != null) ? pair.Key : null, pair.Value);
return tmp609;
}
public static bool Equals(this Dictionary<string, string> instance, object that)
{
if (!(that is Dictionary<string, string> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this Dictionary<string, string> instance)
{
return TCollections.GetHashCode(instance);
}
public static Dictionary<string, string> DeepCopy(this Dictionary<string, string> source)
{
if (source == null)
return null;
var tmp610 = new Dictionary<string, string>(source.Count);
foreach (var pair in source)
tmp610.Add((pair.Key != null) ? pair.Key : null, (pair.Value != null) ? pair.Value : null);
return tmp610;
}
public static bool Equals(this List<Dictionary<string, string>> instance, object that)
{
if (!(that is List<Dictionary<string, string>> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<Dictionary<string, string>> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<Dictionary<string, string>> DeepCopy(this List<Dictionary<string, string>> source)
{
if (source == null)
return null;
var tmp611 = new List<Dictionary<string, string>>(source.Count);
foreach (var elem in source)
tmp611.Add((elem != null) ? elem.DeepCopy() : null);
return tmp611;
}
public static bool Equals(this List<List<int>> instance, object that)
{
if (!(that is List<List<int>> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<List<int>> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<List<int>> DeepCopy(this List<List<int>> source)
{
if (source == null)
return null;
var tmp612 = new List<List<int>>(source.Count);
foreach (var elem in source)
tmp612.Add((elem != null) ? elem.DeepCopy() : null);
return tmp612;
}
public static bool Equals(this List<List<string>> instance, object that)
{
if (!(that is List<List<string>> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<List<string>> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<List<string>> DeepCopy(this List<List<string>> source)
{
if (source == null)
return null;
var tmp613 = new List<List<string>>(source.Count);
foreach (var elem in source)
tmp613.Add((elem != null) ? elem.DeepCopy() : null);
return tmp613;
}
public static bool Equals(this List<TSStatus> instance, object that)
{
if (!(that is List<TSStatus> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<TSStatus> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<TSStatus> DeepCopy(this List<TSStatus> source)
{
if (source == null)
return null;
var tmp614 = new List<TSStatus>(source.Count);
foreach (var elem in source)
tmp614.Add((elem != null) ? elem.DeepCopy() : null);
return tmp614;
}
public static bool Equals(this List<byte[]> instance, object that)
{
if (!(that is List<byte[]> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<byte[]> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<byte[]> DeepCopy(this List<byte[]> source)
{
if (source == null)
return null;
var tmp615 = new List<byte[]>(source.Count);
foreach (var elem in source)
tmp615.Add((elem != null) ? elem.ToArray() : null);
return tmp615;
}
public static bool Equals(this List<int> instance, object that)
{
if (!(that is List<int> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<int> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<int> DeepCopy(this List<int> source)
{
if (source == null)
return null;
var tmp616 = new List<int>(source.Count);
foreach (var elem in source)
tmp616.Add(elem);
return tmp616;
}
public static bool Equals(this List<long> instance, object that)
{
if (!(that is List<long> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<long> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<long> DeepCopy(this List<long> source)
{
if (source == null)
return null;
var tmp617 = new List<long>(source.Count);
foreach (var elem in source)
tmp617.Add(elem);
return tmp617;
}
public static bool Equals(this List<sbyte> instance, object that)
{
if (!(that is List<sbyte> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<sbyte> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<sbyte> DeepCopy(this List<sbyte> source)
{
if (source == null)
return null;
var tmp618 = new List<sbyte>(source.Count);
foreach (var elem in source)
tmp618.Add(elem);
return tmp618;
}
public static bool Equals(this List<string> instance, object that)
{
if (!(that is List<string> other)) return false;
if (ReferenceEquals(instance, other)) return true;
return TCollections.Equals(instance, other);
}
public static int GetHashCode(this List<string> instance)
{
return TCollections.GetHashCode(instance);
}
public static List<string> DeepCopy(this List<string> source)
{
if (source == null)
return null;
var tmp619 = new List<string>(source.Count);
foreach (var elem in source)
tmp619.Add((elem != null) ? elem : null);
return tmp619;
}
}