Gets() private method

private Gets ( IronRuby.Runtime.RubyScope scope, RubyIO self ) : MutableString
scope IronRuby.Runtime.RubyScope
self RubyIO
return MutableString
Example #1
0
 public static MutableString Gets(RubyScope /*!*/ scope, object self, [DefaultProtocol, NotNull] Union <MutableString, int> separatorOrLimit)
 {
     return(RubyIOOps.Gets(scope, scope.RubyContext.InputProvider.GetOrResetCurrentStream(), separatorOrLimit));
 }
Example #2
0
 public static MutableString Gets(RubyScope /*!*/ scope, object self, [DefaultProtocol] MutableString separator, [DefaultProtocol] int limit)
 {
     return(RubyIOOps.Gets(scope, scope.RubyContext.InputProvider.GetOrResetCurrentStream(), separator, limit));
 }
Example #3
0
 public static MutableString Gets(RubyScope /*!*/ scope, object self, DynamicNull separator)
 {
     return(RubyIOOps.Gets(scope, scope.RubyContext.InputProvider.GetOrResetCurrentStream(), separator));
 }