public static ICell <bool> Negate(this ICell <bool> cell)
 {
     return(cell.Derive(x => !x));
 }