We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently boltbrowser will only save ascii values back into the DB. It'd be nice to have it check:
My current thought is that other supported data types would just be the basic go types:
bool
int
int8
int16
int32
int64
uint
uint8
uint16
uint32
uint64
uintptr
byte
float32
float64
complex64
complex128
Eventually, I would like to add support for custom data types, probably through the use of go plugins: https://golang.org/pkg/plugin/
I believe that doing this should mostly resolve pull request #31 and alleviate issue #37
The text was updated successfully, but these errors were encountered:
Note: I don't know how many of those are actually needed.
Sorry, something went wrong.
No branches or pull requests
Currently boltbrowser will only save ascii values back into the DB.
It'd be nice to have it check:
My current thought is that other supported data types would just be the basic go types:
bool
int
,int8
,int16
,int32
,int64
uint
,uint8
,uint16
,uint32
,uint64
,uintptr
(doubt if we actually need that one)byte
float32
,float64
complex64
,complex128
Eventually, I would like to add support for custom data types, probably through the use of go plugins:
https://golang.org/pkg/plugin/
I believe that doing this should mostly resolve pull request #31 and alleviate issue #37
The text was updated successfully, but these errors were encountered: