Converts a number to a string, using scientific notation. The operation is not affected by the context.
(self, a)
| 5556 | return a.to_eng_string(context=self) |
| 5557 | |
| 5558 | def to_sci_string(self, a): |
| 5559 | """Converts a number to a string, using scientific notation. |
| 5560 | |
| 5561 | The operation is not affected by the context. |
| 5562 | """ |
| 5563 | a = _convert_other(a, raiseit=True) |
| 5564 | return a.__str__(context=self) |
| 5565 | |
| 5566 | def to_integral_exact(self, a): |
| 5567 | """Rounds to an integer. |
nothing calls this directly
no test coverage detected