()
| 180 | } |
| 181 | |
| 182 | func (v Value) IsFractional() (ok bool) { |
| 183 | _ = Fractional(nil) // compiler bug work-around |
| 184 | if v.Inner != nil { |
| 185 | _, ok = v.Inner.(Fractional) |
| 186 | } |
| 187 | return ok |
| 188 | } |
| 189 | |
| 190 | func (v Value) IsString() (ok bool) { |
| 191 | _ = String{} // compiler bug work-around |