Understand Joker's primitive types
masterBecause Joker is implemented in Go, its primitive types map to Go types rather than Java types.
| Joker type | Go type |
|---|---|
| BigFloat | big.Float |
| BigInt | big.Int |
| Boolean | bool |
| Char | rune |
| Double | float64 |
| Int | int |
| Ratio | big.Rat |
| Regex | regexp.Regexp |
| String | string |
| Time | time.Time |
Note: Nil is a type with a single value: nil.