()
| 474 | } |
| 475 | |
| 476 | func (n *Nature) IsNumber() bool { |
| 477 | return n.IsInteger || n.IsFloat |
| 478 | } |
| 479 | |
| 480 | func (n *Nature) PromoteNumericNature(c *Cache, rhs Nature) Nature { |
| 481 | if n.IsUnknown(c) || rhs.IsUnknown(c) { |
no outgoing calls
no test coverage detected