	
	_A_r_e _A_l_l _V_a_l_u_e_s _T_r_u_e?
	
	     all(x)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     all takes a single logical argument x and returns a
	     logical value indicating whether or not all the ele-
	     ments of x are TRUE.
	
	     The value returned is TRUE if all the values in x are
	     TRUE, and FALSE if x contains any FALSE values.  If x
	     consists of a mix of TRUE and NA values, then all
	     returns NA.
	
	_E_x_a_m_p_l_e_s:
	
	     if(all(x>0)) cat("All x values are positive\n")
	
