IronRuby.Builtins.BuiltinsLibraryInitializer.LoadComparable_Instance C# (CSharp) Method

LoadComparable_Instance() private static method

private static LoadComparable_Instance ( IronRuby module ) : void
module IronRuby
return void
        private static void LoadComparable_Instance(IronRuby.Builtins.RubyModule/*!*/ module) {
            DefineLibraryMethod(module, "<", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.ComparisonStorage, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.Less)
            );
            
            DefineLibraryMethod(module, "<=", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.ComparisonStorage, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.LessOrEqual)
            );
            
            DefineLibraryMethod(module, "==", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.BinaryOpStorage, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.Equal)
            );
            
            DefineLibraryMethod(module, ">", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.ComparisonStorage, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.Greater)
            );
            
            DefineLibraryMethod(module, ">=", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.ComparisonStorage, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.GreaterOrEqual)
            );
            
            DefineLibraryMethod(module, "between?", 0x51, 
                0x00000000U, 
                new Func<IronRuby.Runtime.ComparisonStorage, System.Object, System.Object, System.Object, System.Boolean>(IronRuby.Builtins.Comparable.Between)
            );
            
        }
        
BuiltinsLibraryInitializer