class IO

def buffered?

@returns [Boolean] True if the IO is buffered (not synchronized).
Check if the IO is buffered.
def buffered?
	return !self.sync
end