(s, prefix string)
| 96 | } |
| 97 | |
| 98 | func consumePrefix(s, prefix string) (string, bool) { |
| 99 | if strings.HasPrefix(s, prefix) { |
| 100 | return s[len(prefix):], true |
| 101 | } |
| 102 | return s, false |
| 103 | } |
| 104 | |
| 105 | func (d *Decimal) setString(c *Context, s string) (Condition, error) { |
| 106 | orig := s |
no outgoing calls
no test coverage detected
searching dependent graphs…