Or() публичный Метод

Computes the bitwise OR of this container with another (union). This container as well as the provided container are left unaffected.
public Or ( ArrayContainer x ) : Container
x ArrayContainer Other container
Результат Container
Пример #1
0
 /// <summary>
 /// Computes the bitwise OR of this container with another (union). This
 /// container as well as the provided container are left unaffected.
 /// </summary>
 /// <param name="x">Other container</param>
 /// <returns>Aggregated container</returns>
 public override Container Or(BitsetContainer x)
 {
     return x.Or((ArrayContainer) this);
 }
Пример #2
0
 /// <summary>
 /// Computes the bitwise OR of this container with another (union). This
 /// container as well as the provided container are left unaffected.
 /// </summary>
 /// <param name="x">Other container</param>
 /// <returns>Aggregated container</returns>
 public override Container Or(BitsetContainer x)
 {
     return(x.Or(this));
 }
Пример #3
0
 /// <summary>
 /// Computes the in-place bitwise OR of this container with another
 /// (union). The current container is generally modified, whereas the
 /// provided container(x) is unaffected.May generate a new container.
 /// </summary>
 /// <param name="x">Other container</param>
 /// <returns>Aggregated container</returns>
 public override Container IOr(BitsetContainer x)
 {
     return x.Or(this);
 }