I'm using flatbuffers, in its' schema, some field can set as hash. Eg:
table Person {
age: int (hash:"fnv1_32" );
}
what is this for ? I'm using
flatc --cpp --gen-object-api Person_KeyHashTest.fbs
How to set 'rehash' and 'resolver' in the generate function ? Could someone give me an easy example ?