Initialize() public method

public Initialize ( BinaryOpStorage comparisonStorage, RubyContext context, object begin, object end, bool excludeEnd ) : void
comparisonStorage BinaryOpStorage
context RubyContext
begin object
end object
excludeEnd bool
return void
Example #1
0
 public static Range/*!*/ Reinitialize(BinaryOpStorage/*!*/ comparisonStorage, 
     RubyContext/*!*/ context, Range/*!*/ self, object begin, object end, [Optional]bool excludeEnd) {
     self.Initialize(comparisonStorage, context, begin, end, excludeEnd);
     return self;
 }
Example #2
0
 public static Range /*!*/ Reinitialize(BinaryOpStorage /*!*/ comparisonStorage,
                                        RubyContext /*!*/ context, Range /*!*/ self, object begin, object end, [Optional] bool excludeEnd)
 {
     self.Initialize(comparisonStorage, context, begin, end, excludeEnd);
     return(self);
 }
Example #3
0
 public static Range/*!*/ Reinitialize(RubyContext/*!*/ context, Range/*!*/ self, object begin, object end, [Optional]bool excludeEnd) {
     self.Initialize(context, begin, end, excludeEnd);
     return self;
 }
Example #4
0
 public static Range /*!*/ Reinitialize(RubyContext /*!*/ context, Range /*!*/ self, object begin, object end, [Optional] bool excludeEnd)
 {
     self.Initialize(context, begin, end, excludeEnd);
     return(self);
 }