Bool returns a bool value with given bool. Deprecated: Use NewBool() instead.
(b bool)
| 303 | // Bool returns a bool value with given bool. |
| 304 | // Deprecated: Use NewBool() instead. |
| 305 | func (ctx *Context) Bool(b bool) *Value { |
| 306 | return ctx.NewBool(b) |
| 307 | } |
| 308 | |
| 309 | // NewInt32 returns a int32 value with given int32. |
| 310 | func (ctx *Context) NewInt32(v int32) *Value { |