Bitwise conjunction operators

Synopses

Declared in <absl/numeric/int128.h>

Computes the bitwise AND of two StatusToStringMode values.

Computes the bitwise AND of two chars_format values.

Returns the bitwise AND of lhs and rhs.

constexpr
int128
operator&(
    int128 lhs,
    int128 rhs);

Returns the bitwise AND of lhs and rhs.

constexpr
uint128
operator&(
    uint128 lhs,
    uint128 rhs);

Computes the intersection of two character sets.

constexpr
CharSet
operator&(
    CharSet const& a,
    CharSet const& b);

Return Value

  • The bitwise AND of lhs and rhs.

  • The bitwise AND lhs & rhs.

  • A set with the characters present in both a and b.

Parameters

Name

Description

lhs

The left‐hand operand.

rhs

The right‐hand operand.

a

The left‐hand operand.

b

The right‐hand operand.

Created with MrDocs