Ejemplo n.º 1
0
func (val_ *Value) IsUint32() bool {
	return val_.hasJsType(isUint32, func(self unsafe.Pointer) bool {
		return C.V8_Value_IsUint32(self) == 1
	})
}
Ejemplo n.º 2
0
func (v *Value) IsUint32() bool {
	return v.checkJsType(isUint32, func(self unsafe.Pointer) bool {
		return C.V8_Value_IsUint32(self) == 1
	})
}