Sha256: 349a68b503f654a63d71976a9b93002888a2d9b6a62d5acf81a389f82759b497
Contents?: true
Size: 588 Bytes
Versions: 1
Compression:
Stored size: 588 Bytes
Contents
module VirtFS::CamcorderFS # rubocop:disable Style/ClassAndModuleChildren # # Directory instance methods - called by CamcorderFS::Dir instances - thick interface. # Makes recordable call to corresponding CcDelegate method. # class FS module DirInstanceMethods # # Dir instance methods - delegate to CcDelegate. # def dir_i_close(instance_handle) ccd_call(__method__, instance_handle) end def dir_i_each(instance_handle, block, rv) return_enum(ccd_call(__method__, instance_handle), block, rv) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
virtfs-camcorderfs-0.0.1 | lib/virtfs/camcorderfs/fs/dir_instance_methods.rb |