예제 #1
0
 public static RubyArray /*!*/ InPlaceReverse(RubyContext /*!*/ context, RubyArray /*!*/ self)
 {
     RubyUtils.RequiresNotFrozen(context, self);
     self.Reverse();
     return(self);
 }
예제 #2
0
 public static RubyArray /*!*/ InPlaceReverse(RubyContext /*!*/ context, RubyArray /*!*/ self)
 {
     self.Reverse();
     return(self);
 }