Besides functions in Go, are there any other types that cannot be marshaled using json.Marhsal?
If I pass a func to json.Marshal, I get:
json: unsupported type: func()
are there any other data types in Golang that can't be serialized / marshaled? I am writing a mini-library and want to know if I need to check for other things which can't be serialized.