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

Method IsInexact

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

Source from the content-addressed store, hash-verified

76 return (fpstatus_ & kDivideByZero) != 0;
77 }
78 constexpr bool IsInexact() const
79 {
80 return (fpstatus_ & kInexact) != 0;
81 }
82 constexpr bool IsInvalid() const
83 {
84 return (fpstatus_ & kInvalid) != 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected