Abs() private method

private Abs ( int self ) : object
self int
return object
コード例 #1
0
ファイル: Integer.cs プロジェクト: yyyyj/ironruby
        public static RubyArray /*!*/ GcdLcm(int self, int other)
        {
            int gcd = SignedGcd(self, other);

            return(new RubyArray {
                ClrInteger.Abs(gcd), Lcm(self, other, gcd)
            });
        }
コード例 #2
0
ファイル: Integer.cs プロジェクト: yyyyj/ironruby
 public static object /*!*/ Gcd(int self, int other)
 {
     return(ClrInteger.Abs(SignedGcd(self, other)));
 }