MCPcopy Create free account
hub / github.com/ablab/spades / print

Method print

ext/src/llvm/APInt.cpp:2297–2301  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2295#endif
2296
2297void APInt::print(raw_ostream &OS, bool isSigned) const {
2298 SmallString<40> S;
2299 this->toString(S, 10, isSigned, /* formatAsCLiteral = */false);
2300 OS << S;
2301}
2302
2303// This implements a variety of operations on a representation of
2304// arbitrary precision, two's-complement, bignum integer values.

Callers 1

raw_ostream.cppFile · 0.45

Calls 1

toStringMethod · 0.95

Tested by

no test coverage detected