MCPcopy Create free account
hub / github.com/numpy/numpy / IsInvalid

Method IsInvalid

numpy/core/src/common/float_status.hpp:82–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80 return (fpstatus_ & kInexact) != 0;
81 }
82 constexpr bool IsInvalid() const
83 {
84 return (fpstatus_ & kInvalid) != 0;
85 }
86 constexpr bool IsOverFlow() const
87 {
88 return (fpstatus_ & kOverflow) != 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected