= private = protected
pipe?()
Returns true if the operating system supports pipes and stat is a pipe; false otherwise.
static VALUE rb_stat_p(VALUE obj) { #ifdef S_IFIFO if (S_ISFIFO(get_stat(obj)->st_mode)) return Qtrue; #endif return Qfalse; }