class Ciphr::Functions::Reader::IoReader

Public Instance Methods

apply() click to toggle source
# File lib/ciphr/functions/reader.rb, line 38
def apply
  input = args[0]
  input.binmode
  Proc.new do
    input.read(256)
  end
end