class Sys::Io::FileHandle

Constants

CONSTRUCTS__
ISENUM__

Attributes

index[RW]
params[RW]
tag[RW]

Public Class Methods

new(t,index,p = nil ) click to toggle source
# File lib/lib/sys/io/file_handle.rb, line 11
def initialize(t,index,p = nil ) @tag = t; @index = index; @params = p; end

Public Instance Methods

==(a) click to toggle source
# File lib/lib/sys/io/file_handle.rb, line 14
def ==(a) (!a.nil?) && (a.respond_to? 'ISENUM__') && a.tag === @tag && a.index === @index && a.params == @params end