D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
alt
/
ruby26
/
lib64
/
ruby
/
2.6.0
/
bundler
/
vendor
/
thor
/
lib
/
thor
/
core_ext
/
Filename :
io_binary_read.rb
back
Copy
class IO #:nodoc: class << self unless method_defined? :binread def binread(file, *args) raise ArgumentError, "wrong number of arguments (#{1 + args.size} for 1..3)" unless args.size < 3 File.open(file, "rb") do |f| f.read(*args) end end end end end