GetHashCode() public method

public GetHashCode ( UnaryOpStorage hashStorage, ConversionStorage fixnumCast ) : int
hashStorage UnaryOpStorage
fixnumCast ConversionStorage
return int
コード例 #1
0
ファイル: StructOps.cs プロジェクト: jschementi/iron
 public static int Hash(UnaryOpStorage/*!*/ hashStorage, ConversionStorage<int>/*!*/ fixnumCast, RubyStruct/*!*/ self) {
     return self.GetHashCode(hashStorage, fixnumCast);
 }
コード例 #2
0
ファイル: StructOps.cs プロジェクト: gaybro8777/ironruby
 public static int Hash(RubyStruct /*!*/ self)
 {
     return(self.GetHashCode());
 }
コード例 #3
0
ファイル: StructOps.cs プロジェクト: jcteague/ironruby
 public static int Hash(RubyStruct/*!*/ self) {
     return self.GetHashCode();
 }
コード例 #4
0
 public static int Hash(UnaryOpStorage /*!*/ hashStorage, ConversionStorage <int> /*!*/ fixnumCast, RubyStruct /*!*/ self)
 {
     return(self.GetHashCode(hashStorage, fixnumCast));
 }