/// <summary>
 /// Returns true only if all components of x are true.
 /// </summary>
 /// <param name="x"></param>
 /// <returns></returns>
 public static bool all(bvec2 x)
 {
     return(false);
 }
 /// <summary>
 /// Returns the component-wise logical complement of x.
 /// </summary>
 /// <param name="x"></param>
 /// <returns></returns>
 public static bvec2 not(bvec2 x)
 {
     return(null);
 }
 /// <summary>
 /// Returns the component-wise compare of x != y.
 /// </summary>
 /// <param name="x"></param>
 /// <param name="y"></param>
 /// <returns></returns>
 public static bvec2 notEqual(bvec2 x, bvec2 y)
 {
     return(null);
 }