MCPcopy Index your code
hub / github.com/pingcap/tidb / IsEmpty

Method IsEmpty

pkg/expression/exprctx/optional.go:190–192  ·  view source on GitHub ↗

IsEmpty checks whether the bit map is empty.

()

Source from the content-addressed store, hash-verified

188
189// IsEmpty checks whether the bit map is empty.
190func (b OptionalEvalPropKeySet) IsEmpty() bool {
191 return b&allOptPropsMask == 0
192}
193
194// IsFull checks whether all optional properties are contained in the bit map.
195func (b OptionalEvalPropKeySet) IsFull() bool {

Calls

no outgoing calls