= private = protected
ino()
Returns the inode number for stat.
File.stat("testfile").ino #=> 1083669
static VALUE rb_stat_ino(VALUE self) { #if SIZEOF_STRUCT_STAT_ST_INO > SIZEOF_LONG return ULL2NUM(get_stat(self)->st_ino); #else return ULONG2NUM(get_stat(self)->st_ino); #endif }