Abs() 개인적인 메소드

private Abs ( int self ) : object
self int
리턴 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)));
 }